From 3eaa65c9cf30f4fe59cd1f27812571cca1730fde Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Sat, 7 Jul 2018 17:37:15 +0200 Subject: [PATCH] Minor doc fixes. --- src/base/construction.rs | 2 +- src/geometry/isometry_alias.rs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/base/construction.rs b/src/base/construction.rs index 063f005d..b6c36735 100644 --- a/src/base/construction.rs +++ b/src/base/construction.rs @@ -93,7 +93,7 @@ where } /// Creates a matrix with its elements filled with the components provided by a slice. The - /// components must have the same layout as the matrix data storage (i.e. row-major or column-major). + /// components must have the same layout as the matrix data storage (i.e. column-major). #[inline] pub fn from_column_slice_generic(nrows: R, ncols: C, slice: &[N]) -> Self { Self::from_iterator_generic(nrows, ncols, slice.iter().cloned()) diff --git a/src/geometry/isometry_alias.rs b/src/geometry/isometry_alias.rs index 684db007..fba07e5e 100644 --- a/src/geometry/isometry_alias.rs +++ b/src/geometry/isometry_alias.rs @@ -2,14 +2,14 @@ use base::dimension::{U2, U3}; use geometry::{Isometry, Rotation2, Rotation3, UnitComplex, UnitQuaternion}; -/// A 2-dimensional isometry using a unit complex number for its rotational part. +/// A 2-dimensional direct isometry using a unit complex number for its rotational part. pub type Isometry2 = Isometry>; -/// A 3-dimensional isometry using a unit quaternion for its rotational part. +/// A 3-dimensional direct isometry using a unit quaternion for its rotational part. pub type Isometry3 = Isometry>; -/// A 2-dimensional isometry using a rotation matrix for its rotational part. +/// A 2-dimensional direct isometry using a rotation matrix for its rotational part. pub type IsometryMatrix2 = Isometry>; -/// A 3-dimensional isometry using a rotation matrix for its rotational part. +/// A 3-dimensional direct isometry using a rotation matrix for its rotational part. pub type IsometryMatrix3 = Isometry>;