From b865dbdc474ee08f09ac675a47cb0e20bd1059ad Mon Sep 17 00:00:00 2001 From: jahs-tech Date: Thu, 16 Feb 2023 11:05:46 -0500 Subject: Fix typo in bitfields documentation (#2412) "Far each ..." should be "For each ..." --- book/src/using-bitfields.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 `````` * Setter functions for each contiguous block of bitfields named ```set_``` -* 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 -- cgit v1.2.3