From 3e61ff98e1f9eab0c3b30e1d1c911c1421a20cba Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 9 Dec 2024 11:48:05 +0100 Subject: [PATCH] Address a funny clippy warning --- src/lib.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index c579599..aed8c12 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,13 +4,12 @@ //! from the standard library, with the following differences: //! //! * Speed is privileged over accuracy. In particular, `CLOCK_MONOTONIC_COARSE` -//! is used to -//! retrieve the clock value on Linux systems, and transformations avoid -//! operations that can be slow on non-Intel systems. +//! is used to retrieve the clock value on Linux systems, and transformations avoid +//! operations that can be slow on non-Intel systems. //! * The number of system calls can be kept to a minimum. The "most recent -//! timestamp" is -//! always kept in memory. It can be read with just a load operation, and can be -//! updated only as frequently as necessary. +//! timestamp" is always kept in memory. +//! It can be read with just a load operation, and can be +//! updated only as frequently as necessary. //! //! # Installation //!