about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2013-10-06 18:51:58 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2013-10-06 18:51:58 +1100
commitc5c980ac2a46292a49fb1b2321340e0aebc6e71e (patch)
tree89ff1f6ca054a2dab192aecacedf1aebd1eb8e00 /src
parentd5e5d22bdb0299950d38c24d2c1503addf4f898d (diff)
downloadrust-c5c980ac2a46292a49fb1b2321340e0aebc6e71e.tar.gz
rust-c5c980ac2a46292a49fb1b2321340e0aebc6e71e.zip
Fix a typo in std::ops documentation
Diffstat (limited to 'src')
-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)`.