From 73c34e9f052d8d21bcef55a2a62cb3dd3346a35c Mon Sep 17 00:00:00 2001 From: Cameron Hart Date: Wed, 17 Feb 2016 22:43:41 +1100 Subject: [PATCH] Small doc fix for EuclideanVector trait --- src/vector.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vector.rs b/src/vector.rs index 75e4e1e..b9dc1aa 100644 --- a/src/vector.rs +++ b/src/vector.rs @@ -448,7 +448,7 @@ impl Vector4 { } /// Specifies geometric operations for vectors. This is only implemented for -/// 2-dimensional and 3-dimensional vectors. +/// vectors of float types. pub trait EuclideanVector: Vector + Sized where // FIXME: Ugly type signatures - blocked by rust-lang/rust#24092 ::Scalar: BaseFloat,