about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDale Wijnand <344610+dwijnand@users.noreply.github.com>2018-11-11 07:36:10 +0000
committerGitHub <noreply@github.com>2018-11-11 07:36:10 +0000
commit20ef40ae50f021beef40458fc1011651aed31ede (patch)
tree3fe6646be762ee0a4a4b60203ebcb69055b31bb7 /src
parent9b8f9029762da90a88c8ca6f8ff7690177ec696a (diff)
downloadrust-20ef40ae50f021beef40458fc1011651aed31ede.tar.gz
rust-20ef40ae50f021beef40458fc1011651aed31ede.zip
Fix a typo in std::panic
Diffstat (limited to 'src')
-rw-r--r--src/libstd/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index 96c92ceb5bb..15fbb105921 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.
 ///