From 20ef40ae50f021beef40458fc1011651aed31ede Mon Sep 17 00:00:00 2001 From: Dale Wijnand <344610+dwijnand@users.noreply.github.com> Date: Sun, 11 Nov 2018 07:36:10 +0000 Subject: [PATCH] Fix a typo in std::panic --- src/libstd/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index 96c92ceb5bb41..15fbb10592133 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -16,7 +16,7 @@ /// The entry point for panic of Rust threads. /// -/// This allows a program to to terminate immediately and provide feedback +/// This allows a program to terminate immediately and provide feedback /// to the caller of the program. `panic!` should be used when a program reaches /// an unrecoverable problem. ///