Fix spelling of "occurred".

This commit is contained in:
Josh Stone 2016-02-05 16:04:34 -08:00
parent d1adf45389
commit 9b2116d78f
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ pub fn pow<T: Clone + One + Mul<T, Output = T>>(mut base: T, mut exp: usize) ->
acc
}
/// Raises a value to the power of exp, returning `None` if an overflow occured.
/// Raises a value to the power of exp, returning `None` if an overflow occurred.
///
/// Otherwise same as the `pow` function.
///