diff --git a/src/macros.rs b/src/macros.rs index a1d71d9ca..614961ff7 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -119,7 +119,7 @@ macro_rules! warn { /// let conn_info = Connection { port: 40, speed: 3.20 }; /// /// info!("Connected to port {} at {} Mb/s", conn_info.port, conn_info.speed); -/// info!(target: "connection_events", "Successfull connection, port: {}, speed: {}", +/// info!(target: "connection_events", "Successful connection, port: {}, speed: {}", /// conn_info.port, conn_info.speed); /// # } /// ```