Skip to content

Commit

Permalink
Remove `
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Jan 18, 2024
1 parent 96c7f41 commit 7d30b9a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 14 deletions.
11 changes: 6 additions & 5 deletions src/content/chapter0_basics/lesson01_hello_world/text.html
Original file line number Diff line number Diff line change
@@ -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>
Expand Down
13 changes: 7 additions & 6 deletions src/content/chapter0_basics/lesson05_floats/text.html
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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>

Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<p>
Functions and other definitions can be marked as deprecated using the
`@deprecated` attribute.
<code>@deprecated</code>
attribute.
</p>
<p>
If a deprecated function is reference the compiler will emit a warning,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<p>
The case expression is the most common kind of flow control in Gleam code. It
is similar to `switch` in some other languages, but more powerful than most.
</p>
is similar to <code>switch</code> in some other languages, but more powerful
than most.
</p>
<p>
It allows the programmer to say "if the data has this shape then run this
code", a process called called <em>pattern matching</em>.
Expand Down

0 comments on commit 7d30b9a

Please sign in to comment.