Fix comment.

This commit is contained in:
Sébastien Crozet 2013-05-21 23:20:09 +00:00
parent 65b175b4a7
commit 2b9dc1d2e3
1 changed files with 2 additions and 4 deletions

View File

@ -7,10 +7,8 @@ pub trait Norm<T>
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;