Skip to content

Commit c81a4b3

Browse files
committed
docs: fix double escaping html entities
1 parent 8d6601d commit c81a4b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/langref.html.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1024,7 +1024,7 @@ a &= b{#endsyntax#}</pre></td>
10241024
</ul>
10251025
</td>
10261026
<td>
1027-
<pre>{#syntax#}0b011 &amp; 0b101 == 0b001{#endsyntax#}</pre>
1027+
<pre>{#syntax#}0b011 & 0b101 == 0b001{#endsyntax#}</pre>
10281028
</td>
10291029
</tr>
10301030
<tr>
@@ -1345,7 +1345,7 @@ x.* == 1234{#endsyntax#}</pre>
13451345
</td>
13461346
</tr>
13471347
<tr>
1348-
<td><pre>{#syntax#}&amp;a{#endsyntax#}</pre></td>
1348+
<td><pre>{#syntax#}&a{#endsyntax#}</pre></td>
13491349
<td>
13501350
All types
13511351
</td>
@@ -5888,7 +5888,7 @@ mem.set(u8, dest, c);{#endsyntax#}</pre>
58885888
<pre>{#syntax#}@mod(numerator: T, denominator: T) T{#endsyntax#}</pre>
58895889
<p>
58905890
Modulus division. For unsigned integers this is the same as
5891-
{#syntax#}numerator % denominator{#endsyntax#}. Caller guarantees {#syntax#}denominator &gt; 0{#endsyntax#}.
5891+
{#syntax#}numerator % denominator{#endsyntax#}. Caller guarantees {#syntax#}denominator > 0{#endsyntax#}.
58925892
</p>
58935893
<ul>
58945894
<li>{#syntax#}@mod(-5, 3) == 1{#endsyntax#}</li>

0 commit comments

Comments
 (0)