From 3ac74288580433880a5f2791a1d672c1b9b0c610 Mon Sep 17 00:00:00 2001 From: Yury Korolev Date: Tue, 12 Dec 2023 19:26:17 +0300 Subject: [PATCH] cargo clippy --- cidre/src/nw/connection.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cidre/src/nw/connection.rs b/cidre/src/nw/connection.rs index d03d26d5..a3e8e22b 100644 --- a/cidre/src/nw/connection.rs +++ b/cidre/src/nw/connection.rs @@ -6,13 +6,13 @@ pub struct State(pub u32); impl State { - /// The state of the connection is not valid. This state - /// will never be delivered in the connection's state update handler, and can be treated as - /// an unexpected value. + /// The state of the connection is not valid. This state + /// will never be delivered in the connection's state update handler, and can be treated as + /// an unexpected value. #[doc(alias = "nw_connection_state_invalid")] pub const INVALID: Self = Self(0); - /// The connection is waiting for a usable network before re-attempting + /// The connection is waiting for a usable network before re-attempting #[doc(alias = "nw_connection_state_waiting")] pub const WAITING: Self = Self(1);