summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-02-16 16:06:15 +0000
committerGitHub <noreply@github.com>2023-02-16 16:06:15 +0000
commit75e293b1201487a24f6952657b9805bba9e03743 (patch)
treed67b01d4d81d3ca368f95365651bc6b423363e54
parentfe44e006729c318897ca6e6090f183fab81a3326 (diff)
parentb865dbdc474ee08f09ac675a47cb0e20bd1059ad (diff)
-rw-r--r--book/src/using-bitfields.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/using-bitfields.md b/book/src/using-bitfields.md
index 41e07ad7..0ee9f032 100644
--- a/book/src/using-bitfields.md
+++ b/book/src/using-bitfields.md
@@ -5,7 +5,7 @@
As Rust does not support bitfields, Bindgen generates a struct for each with the following characteristics
* Immutable getter functions for each bitfield named ```<bitfield>```
* Setter functions for each contiguous block of bitfields named ```set_<bitfield>```
-* Far each contiguous block of bitfields, Bindgen emits an opaque physical field that contains one or more logical bitfields
+* For each contiguous block of bitfields, Bindgen emits an opaque physical field that contains one or more logical bitfields
* A static constructor ```new_bitfield_{1, 2, ...}``` with a parameter for each bitfield contained within the opaque physical field.
## Bitfield examples