Skip to content

Commit

Permalink
fix a nit in the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
s1rius committed Mar 11, 2023
1 parent 6abe790 commit c0721eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ bitflags! {
const A = 0b00000001;
const B = 0b00000010;
const C = 0b00000100;
const ABC = Self::A.bits | Self::B.bits | Self::C.bits;
const ABC = Self::A.bits() | Self::B.bits() | Self::C.bits();
}
}

Expand Down

0 comments on commit c0721eb

Please sign in to comment.