diff --git a/src/lib.rs b/src/lib.rs index d0a4ded..01ac102 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -44,7 +44,7 @@ pub struct Slice16(core::marker::PhantomData); /// Implementation using a 256 entry lookup table. Use it with `Crc>` pub struct Bytewise(core::marker::PhantomData); -/// Implementation using no lookup table. Use it with `Crc>` +/// Implementation using no lookup table. Use it with `Crc>` pub struct NoTable(core::marker::PhantomData); impl crate::private::Sealed for Slice16 {} @@ -76,7 +76,7 @@ pub trait Implementation: private::Sealed { type Table; } -/// Crc with pluggable implementations ([Nolookup], [Bytewise], [Slice16]). +/// Crc with pluggable implementations ([NoTable], [Bytewise], [Slice16]). /// To choose the default implementation, use the [Width] directly (e.g. `Crc`). pub struct Crc { pub algorithm: &'static Algorithm,