about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2018-10-08 17:44:33 +0200
committerRalf Jung <post@ralfj.de>2018-10-08 17:44:33 +0200
commit54a3583da7031df49009d1162ddbb054c488428c (patch)
tree40fb37627a5ace471c0ff15965c69a797fc85ada /src/libstd
parent25a75a4d8633b9a71b47dbc1cd3c84248725425b (diff)
downloadrust-54a3583da7031df49009d1162ddbb054c488428c.tar.gz
rust-54a3583da7031df49009d1162ddbb054c488428c.zip
it's auto traits that make for automatic implementations
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/panic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/panic.rs b/src/libstd/panic.rs
index 48a9b2f4a93..5c87035d8e9 100644
--- a/src/libstd/panic.rs
+++ b/src/libstd/panic.rs
@@ -79,7 +79,7 @@ pub use core::panic::{PanicInfo, Location};
 ///
 /// Simply put, a type `T` implements `UnwindSafe` if it cannot easily allow
 /// witnessing a broken invariant through the use of `catch_unwind` (catching a
-/// panic). This trait is a marker trait, so it is automatically implemented for
+/// panic). This trait is an auto trait, so it is automatically implemented for
 /// many types, and it is also structurally composed (e.g. a struct is unwind
 /// safe if all of its components are unwind safe).
 ///