From 3be727e76b10a0a294c193b178659893bc321a1a Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 8 Oct 2018 21:57:11 +0700 Subject: [PATCH] Capitalize 'Euclidean'. --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: ///