diff --git a/src/geometry/quaternion.rs b/src/geometry/quaternion.rs index 49656b2cd..6460a4464 100644 --- a/src/geometry/quaternion.rs +++ b/src/geometry/quaternion.rs @@ -856,7 +856,7 @@ impl UnitQuaternion { /// Compute the exponential of a quaternion. /// - /// Note that this function yields a `Quaternion` because it looses the unit property. + /// Note that this function yields a `Quaternion` because it loses the unit property. #[inline] pub fn exp(&self) -> Quaternion { self.as_ref().exp() @@ -864,7 +864,7 @@ impl UnitQuaternion { /// Compute the natural logarithm of a quaternion. /// - /// Note that this function yields a `Quaternion` because it looses the unit property. + /// Note that this function yields a `Quaternion` because it loses the unit property. /// The vector part of the return value corresponds to the axis-angle representation (divided /// by 2.0) of this unit quaternion. ///