Browse Source

Merge #119

119: Doc fixes r=cuviper a=waywardmonkeys



Co-authored-by: Bruce Mitchener <[email protected]>
bors[bot] 5 years ago
parent
commit
58f02a8677
2 changed files with 3 additions and 3 deletions
  1. 1 1
      src/cast.rs
  2. 2 2
      src/pow.rs

+ 1 - 1
src/cast.rs

@@ -682,7 +682,7 @@ impl<T: NumCast> NumCast for Wrapping<T> {
 
 /// A generic interface for casting between machine scalars with the
 /// `as` operator, which admits narrowing and precision loss.
-/// Implementers of this trait AsPrimitive should behave like a primitive
+/// Implementers of this trait `AsPrimitive` should behave like a primitive
 /// numeric type (e.g. a newtype around another primitive), and the
 /// intended conversion must never fail.
 ///

+ 2 - 2
src/pow.rs

@@ -173,7 +173,7 @@ mod float_impls {
 
 /// Raises a value to the power of exp, using exponentiation by squaring.
 ///
-/// Note that `0⁰` (`pow(0, 0)`) returnes `1`. Mathematically this is undefined.
+/// Note that `0⁰` (`pow(0, 0)`) returns `1`. Mathematically this is undefined.
 ///
 /// # Example
 ///
@@ -211,7 +211,7 @@ pub fn pow<T: Clone + One + Mul<T, Output = T>>(mut base: T, mut exp: usize) ->
 
 /// Raises a value to the power of exp, returning `None` if an overflow occurred.
 ///
-/// Note that `0⁰` (`checked_pow(0, 0)`) returnes `Some(1)`. Mathematically this is undefined.
+/// Note that `0⁰` (`checked_pow(0, 0)`) returns `Some(1)`. Mathematically this is undefined.
 ///
 /// Otherwise same as the `pow` function.
 ///