diff --git a/tokio/src/sync/watch.rs b/tokio/src/sync/watch.rs index 7a8a994f0..502765ebc 100644 --- a/tokio/src/sync/watch.rs +++ b/tokio/src/sync/watch.rs @@ -111,7 +111,7 @@ //! ``` //! use tokio::sync::watch; //! -//! #[tokio::main(flavor = "current_thread")] +//! # #[tokio::main(flavor = "current_thread")] //! # async fn main() { //! let (tx, mut rx) = watch::channel("hello"); //! tx.send("goodbye").unwrap();