From acfa8586ead9ec90c2922aa38722d58f4f23efe3 Mon Sep 17 00:00:00 2001 From: Jonas Olson Date: Thu, 6 Apr 2017 16:46:54 +0200 Subject: [PATCH] Fix typo in scalar.rs. --- src/core/scalar.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/scalar.rs b/src/core/scalar.rs index 14c786d4..9d2cb8c7 100644 --- a/src/core/scalar.rs +++ b/src/core/scalar.rs @@ -1,7 +1,7 @@ use std::fmt::Debug; use std::any::Any; -/// The basic scarar type for all structures of `nalgebra`. +/// The basic scalar type for all structures of `nalgebra`. /// /// This does not make any assumption on the algebraic properties of `Self`. pub trait Scalar: Copy + PartialEq + Debug + Any {