We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 029a94c + 1add62d commit 81cb317Copy full SHA for 81cb317
1 file changed
src/lib.rs
@@ -431,15 +431,15 @@ pub use ::pin_init_internal::Zeroable;
431
/// ```
432
/// use pin_init::MaybeZeroable;
433
///
434
-/// // implmements `Zeroable`
+/// // implements `Zeroable`
435
/// #[derive(MaybeZeroable)]
436
/// pub struct DriverData {
437
/// pub(crate) id: i64,
438
/// buf_ptr: *mut u8,
439
/// len: usize,
440
/// }
441
442
-/// // does not implmement `Zeroable`
+/// // does not implement `Zeroable`
443
444
/// pub struct DriverData2 {
445
0 commit comments