From 57ffea098119504283e320f1a636183a13d9a071 Mon Sep 17 00:00:00 2001 From: Lin Yihai Date: Thu, 15 Aug 2024 16:40:48 +0800 Subject: [PATCH] chore: fix clippy complains ident --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 40c6192..5d14c2c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -832,8 +832,8 @@ struct Ticker<'a> { /// /// States a ticker can be in: /// 1) Woken. - /// 2a) Sleeping and unnotified. - /// 2b) Sleeping and notified. + /// 2a) Sleeping and unnotified. + /// 2b) Sleeping and notified. sleeping: usize, }