diff --git a/src/libstd/ops.rs b/src/libstd/ops.rs index 3418fd939bd4..62685b5dcd39 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)`.