Finish full crate docs

This commit is contained in:
Robin Mueller
2025-11-04 19:08:54 +01:00
committed by Robin Mueller
parent 4bc0219cb2
commit fbdc325d0d
15 changed files with 373 additions and 54 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ pub trait SequenceCounter {
}
}
/// Simple sequence counter which wraps at [T::MAX].
/// Simple sequence counter which wraps at ´T::MAX´.
#[derive(Clone)]
pub struct SequenceCounterSimple<T: Copy> {
seq_count: Cell<T>,