From 2b9dc1d2e3739afe540ba45cfd1d96d51631c05a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Tue, 21 May 2013 23:20:09 +0000 Subject: [PATCH] Fix comment. --- src/traits/norm.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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;