From 9b2116d78f302fed4d49a24de49da96c27b798d6 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Fri, 5 Feb 2016 16:04:34 -0800 Subject: [PATCH] Fix spelling of "occurred". --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index d597b2e..7244f3c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -164,7 +164,7 @@ pub fn pow>(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. ///