diff options
author | Louis Pilfold <louis@lpil.uk> | 2024-01-18 19:55:18 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-01-18 19:55:18 +0000 |
commit | 7d30b9a5e50676881e47fb3ee87b65db4b020493 (patch) | |
tree | 7e29430bb95c029b27214827ee77f2600179761f /src/content/chapter0_basics/lesson05_floats | |
parent | 96c7f41d3c3ac315f9b23b0c874fd1d6044c41b0 (diff) | |
download | tour-7d30b9a5e50676881e47fb3ee87b65db4b020493.tar.gz tour-7d30b9a5e50676881e47fb3ee87b65db4b020493.zip |
Remove `
Diffstat (limited to 'src/content/chapter0_basics/lesson05_floats')
-rw-r--r-- | src/content/chapter0_basics/lesson05_floats/text.html | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/content/chapter0_basics/lesson05_floats/text.html b/src/content/chapter0_basics/lesson05_floats/text.html index 497bb13..cc993c4 100644 --- a/src/content/chapter0_basics/lesson05_floats/text.html +++ b/src/content/chapter0_basics/lesson05_floats/text.html @@ -1,8 +1,7 @@ +<p>Gleam's <code>Float</code> type represents numbers that are not integers.</p> <p> - Gleam's <code>Float</code> type represents numbers that are not integers. -</p> -<p> - Unlike many languages Gleam does not have a `NaN` or `Infinity` float value. + Unlike many languages Gleam does not have a <code>NaN</code> or + <code>Infinity</code> float value. </p> <p> Gleam's numerical operators are not overloaded, so there are dedictated @@ -13,7 +12,9 @@ JavaScript runtimes. </p> <p> - The <a href="https://hexdocs.pm/gleam_stdlib/gleam/float.html"><code>gleam/float</code></a> + The + <a href="https://hexdocs.pm/gleam_stdlib/gleam/float.html" + ><code>gleam/float</code></a + > standard library module contains functions for working with floats. </p> - |