Skip to content

Commit

Permalink
Fix invalid html in javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
fornwall committed May 3, 2021
1 parent 1b52f9d commit a3e1228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/fornwall/jelf/ElfNoteSection.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class ElfNoteSection extends ElfSection {
* word 0: number of entries
* word 1: bitmask of enabled entries
* Then follow variable-length entries, one byte followed by a '\0'-terminated hwcap name string. The byte gives the bit
* number to test if enabled, <code>(1U << bit) & bitmask</code>.
* number to test if enabled, <code>(1U &lt;&lt; bit) &amp; bitmask</code>.
*/
public static final int NT_GNU_HWCAP = 2;
/**
Expand Down

0 comments on commit a3e1228

Please sign in to comment.