about summary refs log tree commit diff
path: root/src/libcore/ops/try.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/ops/try.rs')
-rw-r--r--src/libcore/ops/try.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ops/try.rs b/src/libcore/ops/try.rs
index 4971e825a6f..78326c3e639 100644
--- a/src/libcore/ops/try.rs
+++ b/src/libcore/ops/try.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-/// A trait for customizing the behaviour of the `?` operator.
+/// A trait for customizing the behavior of the `?` operator.
 ///
 /// A type implementing `Try` is one that has a canonical way to view it
 /// in terms of a success/failure dichotomy.  This trait allows both