Skip to content

Commit

Permalink
fix missing end tag
Browse files Browse the repository at this point in the history
  • Loading branch information
kj4tmp committed Oct 19, 2024
1 parent 030242d commit d3f1e19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/langref.html.in
Original file line number Diff line number Diff line change
Expand Up @@ -2186,9 +2186,9 @@ or
having a maximum bit count of 65535, and the host endianness.
On a big endian system, the first declared field will have the highest memory address.
</li>
<li>The backing integer has the same bit count as the fields' total bit width.</li>
<li>The backing integer has the same bit count as the fields' total bit width.</li>
<li>Field access and assignment can be understood as shorthand for bitshifts on the backing integer.</li>
<li>Integers will use exactly as many bits as they have. For example, a {#syntax#}u5{#endsyntax#} will use 5 bits of the backing integer.
<li>Integers will use exactly as many bits as they have. For example, a {#syntax#}u5{#endsyntax#} will use 5 bits of the backing integer.</li>
<li>{#syntax#}bool{#endsyntax#} fields use exactly 1 bit.</li>
<li>An {#link|enum#} field uses exactly the bit width of its integer tag type.</li>
<li>A {#link|packed union#} field uses exactly the bit width of the union field with
Expand Down

0 comments on commit d3f1e19

Please sign in to comment.