about summary refs log tree commit diff
path: root/src/libstd/ops.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/ops.rs')
-rw-r--r--src/libstd/ops.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/ops.rs b/src/libstd/ops.rs
index 3418fd939bd..62685b5dcd3 100644
--- a/src/libstd/ops.rs
+++ b/src/libstd/ops.rs
@@ -14,7 +14,7 @@
 /*!
  *
  * Traits for the built-in operators. Implementing these traits allows you to get
- * an effect similar to oveloading operators.
+ * an effect similar to overloading operators.
  *
  * The values for the right hand side of an operator are automatically
  * borrowed, so `a + b` is sugar for `a.add(&b)`.