Skip to content

Commit

Permalink
Regenerate
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Jan 17, 2024
1 parent 766788c commit d014aee
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions book/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -1143,9 +1143,9 @@ <h2 id="surviving-crashes"><a class="header" href="#surviving-crashes">Surviving
start_year &lt;= year &amp;&amp; year &lt;= end_year
}
</code></pre>
<p>Like all values in Gleam constants are immutable and their values cannot be
<p>Like all values in Gleam, constants are immutable and their values cannot be
changed, so they cannot be used as global mutable state.</p>
<p>When a constant is referenced the value is inlined by the compiler, so they
<p>When a constant is referenced, the value is inlined by the compiler, so they
can be used in case expression guards.</p>
<pre><code class="language-gleam">pub const start_year = 2101
pub const end_year = 2111
Expand Down
2 changes: 1 addition & 1 deletion book/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion book/searchindex.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions book/tour/constants.html
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ <h1 id="constants"><a class="header" href="#constants">Constants</a></h1>
start_year &lt;= year &amp;&amp; year &lt;= end_year
}
</code></pre>
<p>Like all values in Gleam constants are immutable and their values cannot be
<p>Like all values in Gleam, constants are immutable and their values cannot be
changed, so they cannot be used as global mutable state.</p>
<p>When a constant is referenced the value is inlined by the compiler, so they
<p>When a constant is referenced, the value is inlined by the compiler, so they
can be used in case expression guards.</p>
<pre><code class="language-gleam">pub const start_year = 2101
pub const end_year = 2111
Expand Down

0 comments on commit d014aee

Please sign in to comment.