Fix a typo in std::ops documentation

This commit is contained in:
Huon Wilson 2013-10-06 18:51:58 +11:00
parent d5e5d22bdb
commit c5c980ac2a

View File

@ -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)`.