Skip to content

Commit 81cb317

Browse files
authored
Merge pull request #154 from cppcoffee/fix-docs-typos
docs: fix typos in MaybeZeroable documentation
2 parents 029a94c + 1add62d commit 81cb317

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,15 +431,15 @@ pub use ::pin_init_internal::Zeroable;
431431
/// ```
432432
/// use pin_init::MaybeZeroable;
433433
///
434-
/// // implmements `Zeroable`
434+
/// // implements `Zeroable`
435435
/// #[derive(MaybeZeroable)]
436436
/// pub struct DriverData {
437437
/// pub(crate) id: i64,
438438
/// buf_ptr: *mut u8,
439439
/// len: usize,
440440
/// }
441441
///
442-
/// // does not implmement `Zeroable`
442+
/// // does not implement `Zeroable`
443443
/// #[derive(MaybeZeroable)]
444444
/// pub struct DriverData2 {
445445
/// pub(crate) id: i64,

0 commit comments

Comments
 (0)