diff options
-rw-r--r-- | book/src/using-bitfields.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/using-bitfields.md b/book/src/using-bitfields.md index c6d2c7e8..41e07ad7 100644 --- a/book/src/using-bitfields.md +++ b/book/src/using-bitfields.md @@ -85,5 +85,5 @@ Note: This requires the Builder's derive_default to be set to true, otherwise th This will print out ```text -StructWithBitfields: a:1, b:0, c:2 +StructWithBitfields: a:0, b:0, c:0 ``` |