Make some documentation more succinct
This commit is contained in:
parent
f766973a74
commit
90dbd29f6d
1 changed files with 3 additions and 4 deletions
|
@ -108,8 +108,7 @@ use num::{BaseNum, BaseFloat, PartialOrd};
|
||||||
///
|
///
|
||||||
/// ## Vector addition
|
/// ## Vector addition
|
||||||
///
|
///
|
||||||
/// Vectors are required to be able to be added, subtracted, or negated via the
|
/// Vectors can be added, subtracted, or negated via the following traits:
|
||||||
/// following traits:
|
|
||||||
///
|
///
|
||||||
/// - `Add<Output = Self>`
|
/// - `Add<Output = Self>`
|
||||||
/// - `Sub<Output = Self>`
|
/// - `Sub<Output = Self>`
|
||||||
|
@ -128,8 +127,8 @@ use num::{BaseNum, BaseFloat, PartialOrd};
|
||||||
///
|
///
|
||||||
/// ## Scalar multiplication
|
/// ## Scalar multiplication
|
||||||
///
|
///
|
||||||
/// Vectors are required to be able to be multiplied or divided by their
|
/// Vectors can be multiplied or divided by their associated scalars via the
|
||||||
/// associated scalars via the following traits:
|
/// following traits:
|
||||||
///
|
///
|
||||||
/// - `Mul<Self::Scalar, Output = Self>`
|
/// - `Mul<Self::Scalar, Output = Self>`
|
||||||
/// - `Div<Self::Scalar, Output = Self>`
|
/// - `Div<Self::Scalar, Output = Self>`
|
||||||
|
|
Loading…
Reference in a new issue