From 971b71375358065adbba06a83c8707baed3e4d6f Mon Sep 17 00:00:00 2001 From: Benjamin Hetherington Date: Mon, 25 Feb 2019 11:01:56 -0500 Subject: [PATCH] Correct typo in quaternion documentation Correct "looses" to "loses" in quaternion.rs documentation. --- src/geometry/quaternion.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. ///