diff --git a/src/geometry/rotation.rs b/src/geometry/rotation.rs index 01bca1d8..4e90ff7a 100644 --- a/src/geometry/rotation.rs +++ b/src/geometry/rotation.rs @@ -281,7 +281,7 @@ impl Rotation { impl Rotation { /// Transposes `self`. /// - /// Same as `.inverse()` because the inverse of a rotation matrix is its transform. + /// Same as `.inverse()` because the inverse of a rotation matrix is its transpose. /// /// # Example /// ``` @@ -305,7 +305,7 @@ impl Rotation { /// Inverts `self`. /// - /// Same as `.transpose()` because the inverse of a rotation matrix is its transform. + /// Same as `.transpose()` because the inverse of a rotation matrix is its transpose. /// /// # Example /// ``` @@ -329,7 +329,7 @@ impl Rotation { /// Transposes `self` in-place. /// - /// Same as `.inverse_mut()` because the inverse of a rotation matrix is its transform. + /// Same as `.inverse_mut()` because the inverse of a rotation matrix is its transpose. /// /// # Example /// ``` @@ -356,7 +356,7 @@ impl Rotation { /// Inverts `self` in-place. /// - /// Same as `.transpose_mut()` because the inverse of a rotation matrix is its transform. + /// Same as `.transpose_mut()` because the inverse of a rotation matrix is its transpose. /// /// # Example /// ```