Skip to content

Commit

Permalink
Merge pull request #307 from s1rius/patch-1
Browse files Browse the repository at this point in the history
fix a nit in the readme
  • Loading branch information
KodrAus committed Mar 11, 2023
2 parents 6abe790 + c0721eb commit 8011843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
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 8011843

Please sign in to comment.