From 90dbd29f6dc8ddb6e4bef0b3bb2a9433bec91f0c Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Mon, 4 Apr 2016 20:39:18 +1000 Subject: [PATCH] Make some documentation more succinct --- src/vector.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/vector.rs b/src/vector.rs index 8d5682c..64bbcfc 100644 --- a/src/vector.rs +++ b/src/vector.rs @@ -108,8 +108,7 @@ use num::{BaseNum, BaseFloat, PartialOrd}; /// /// ## Vector addition /// -/// Vectors are required to be able to be added, subtracted, or negated via the -/// following traits: +/// Vectors can be added, subtracted, or negated via the following traits: /// /// - `Add` /// - `Sub` @@ -128,8 +127,8 @@ use num::{BaseNum, BaseFloat, PartialOrd}; /// /// ## Scalar multiplication /// -/// Vectors are required to be able to be multiplied or divided by their -/// associated scalars via the following traits: +/// Vectors can be multiplied or divided by their associated scalars via the +/// following traits: /// /// - `Mul` /// - `Div`