aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter0_basics
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/chapter0_basics')
-rw-r--r--src/content/chapter0_basics/lesson01_hello_world/text.html11
-rw-r--r--src/content/chapter0_basics/lesson05_floats/text.html13
2 files changed, 13 insertions, 11 deletions
diff --git a/src/content/chapter0_basics/lesson01_hello_world/text.html b/src/content/chapter0_basics/lesson01_hello_world/text.html
index 8e2033a..ec4fb10 100644
--- a/src/content/chapter0_basics/lesson01_hello_world/text.html
+++ b/src/content/chapter0_basics/lesson01_hello_world/text.html
@@ -1,9 +1,10 @@
+<p>Here is a program that prints out the text "Hello, Joe!".</p>
<p>
- Here is a program that prints out the text "Hello, Joe!".
-</p>
-<p>
- It does this by using the `println` function which has been imported from the
- <a href="https://hexdocs.pm/gleam_stdlib/gleam/io.html"><code>gleam/io</code></a>
+ It does this by using the <code>println</code> function which has been
+ imported from the
+ <a href="https://hexdocs.pm/gleam_stdlib/gleam/io.html"
+ ><code>gleam/io</code></a
+ >
module, which is part of the Gleam standard library.
</p>
<p>
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>
-