diff --git a/src/lib.rs b/src/lib.rs index 668636ef..21d7eeb9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -429,7 +429,7 @@ pub fn angle(a: &V, b: &V) -> V::Real { * Normed space */ -/// Computes the L2 (euclidean) norm of a vector. +/// Computes the L2 (Euclidean) norm of a vector. /// /// # See also: /// @@ -441,7 +441,7 @@ pub fn norm(v: &V) -> V::Field { v.norm() } -/// Computes the squared L2 (euclidean) norm of the vector `v`. +/// Computes the squared L2 (Euclidean) norm of the vector `v`. /// /// # See also: ///