From ce9697f2a24d6c407a518a3a0b68c9db11e72ad3 Mon Sep 17 00:00:00 2001 From: kamulos Date: Tue, 27 Apr 2021 15:23:03 +0200 Subject: [PATCH] doc: fix missing backtick in select doc (#3732) --- tokio/src/macros/select.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/macros/select.rs b/tokio/src/macros/select.rs index 3ba16b615..f98ebff4f 100644 --- a/tokio/src/macros/select.rs +++ b/tokio/src/macros/select.rs @@ -154,7 +154,7 @@ /// `select!` panics if all branches are disabled **and** there is no provided /// `else` branch. A branch is disabled when the provided `if` precondition /// returns `false` **or** when the pattern does not match the result of `. +/// expression>`. /// /// # Examples ///