From 42cc9e7768174651203268a2917a659c8da5c657 Mon Sep 17 00:00:00 2001 From: Akhil Velagapudi <4@4khil.com> Date: Tue, 31 Oct 2023 22:21:55 -0700 Subject: [PATCH] Nolookup -> NoTable Signed-off-by: Akhil Velagapudi <4@4khil.com> --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,