Fix typo in scalar.rs.

This commit is contained in:
Jonas Olson 2017-04-06 16:46:54 +02:00 committed by Sébastien Crozet
parent 7218f83b13
commit acfa8586ea
1 changed files with 1 additions and 1 deletions

View File

@ -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 {