Skip to content

Commit

Permalink
deploy: 4739422
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Apr 19, 2024
1 parent 9e60468 commit 67b0a5f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion print.html
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ <h3 id="if"><a class="header" href="#if">If</a></h3>
<h4 id="if-let"><a class="header" href="#if-let">If Let</a></h4>
<p>Additionally, <code>if let</code> statements are also supported and similarly
mirror Rust's <a href="https://doc.rust-lang.org/reference/expressions/if-expr.html#if-let-expressions"><code>if let</code> expressions</a>:</p>
<pre><code class="language-text">{% if Some(user) = user %}
<pre><code class="language-text">{% if let Some(user) = user %}
{{ user.name }}
{% else %}
No user
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion template_syntax.html
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ <h3 id="if"><a class="header" href="#if">If</a></h3>
<h4 id="if-let"><a class="header" href="#if-let">If Let</a></h4>
<p>Additionally, <code>if let</code> statements are also supported and similarly
mirror Rust's <a href="https://doc.rust-lang.org/reference/expressions/if-expr.html#if-let-expressions"><code>if let</code> expressions</a>:</p>
<pre><code class="language-text">{% if Some(user) = user %}
<pre><code class="language-text">{% if let Some(user) = user %}
{{ user.name }}
{% else %}
No user
Expand Down

0 comments on commit 67b0a5f

Please sign in to comment.