diff --git a/src/traits/norm.rs b/src/traits/norm.rs index 90a20cc3..4eba307f 100644 --- a/src/traits/norm.rs +++ b/src/traits/norm.rs @@ -7,10 +7,8 @@ pub trait Norm fn norm(&self) -> T; /** - * Computes the squared norm of an object. - * - * Computes the squared norm of an object. Computation of the squared norm - * is usually faster than the norm itself. + * Computes the squared norm of an object. Usually faster than computing the + * norm itself. */ fn sqnorm(&self) -> T;