diff --git a/crates/data-model/src/lib.rs b/crates/data-model/src/lib.rs index 607862e96..8e228c1e9 100644 --- a/crates/data-model/src/lib.rs +++ b/crates/data-model/src/lib.rs @@ -11,7 +11,6 @@ //! for testing. //! //! [`MockClock`]: crate::clock::MockClock -//! #![allow(clippy::module_name_repetitions)] diff --git a/crates/storage/src/lib.rs b/crates/storage/src/lib.rs index c1b59482e..605dea279 100644 --- a/crates/storage/src/lib.rs +++ b/crates/storage/src/lib.rs @@ -79,9 +79,9 @@ //! and use that error type //! 2. Lookups return an `Result, Self::Error>`, because 'not found' //! errors are usually cases that are handled differently -//! 3. Operations that need to record the current type use a [`mas_data_model::Clock`] -//! parameter. Operations that need to generate new IDs also use a random -//! number generator. +//! 3. Operations that need to record the current type use a +//! [`mas_data_model::Clock`] parameter. Operations that need to generate +//! new IDs also use a random number generator. //! 4. All the methods use an `&mut self`. This is ensures only one operation //! is done at a time on a single repository instance. //!