From f4ac3952bda3b7b339082ef590ade44a5801cb8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= Date: Sat, 14 Mar 2015 03:44:59 +0100 Subject: [PATCH] Grammar/spelling fixes --- benches/common/macros.rs | 2 +- benches/construction.rs | 2 +- benches/mat.rs | 2 +- benches/quat.rs | 2 +- benches/vec.rs | 2 +- src/line.rs | 4 ++-- src/ray.rs | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/benches/common/macros.rs b/benches/common/macros.rs index e76b868..91cc219 100644 --- a/benches/common/macros.rs +++ b/benches/common/macros.rs @@ -1,5 +1,5 @@ // Copyright 2013-2014 The CGMath Developers. For a full listing of the authors, -// refer to the Cargo.toml file at the top-level directionectory of this distribution. +// refer to the Cargo.toml file at the top-level directory of this distribution. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/benches/construction.rs b/benches/construction.rs index cf679f9..0b21379 100644 --- a/benches/construction.rs +++ b/benches/construction.rs @@ -1,5 +1,5 @@ // Copyright 2013-2014 The CGMath Developers. For a full listing of the authors, -// refer to the Cargo.toml file at the top-level directionectory of this distribution. +// refer to the Cargo.toml file at the top-level directory of this distribution. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/benches/mat.rs b/benches/mat.rs index f171b1d..225b98d 100644 --- a/benches/mat.rs +++ b/benches/mat.rs @@ -1,5 +1,5 @@ // Copyright 2013-2014 The CGMath Developers. For a full listing of the authors, -// refer to the Cargo.toml file at the top-level directionectory of this distribution. +// refer to the Cargo.toml file at the top-level directory of this distribution. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/benches/quat.rs b/benches/quat.rs index 0a59018..1993609 100644 --- a/benches/quat.rs +++ b/benches/quat.rs @@ -1,5 +1,5 @@ // Copyright 2013-2014 The CGMath Developers. For a full listing of the authors, -// refer to the Cargo.toml file at the top-level directionectory of this distribution. +// refer to the Cargo.toml file at the top-level directory of this distribution. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/benches/vec.rs b/benches/vec.rs index 3b96ca7..028fa30 100644 --- a/benches/vec.rs +++ b/benches/vec.rs @@ -1,5 +1,5 @@ // Copyright 2013-2014 The CGMath Developers. For a full listing of the authors, -// refer to the Cargo.toml file at the top-level directionectory of this distribution. +// refer to the Cargo.toml file at the top-level directory of this distribution. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/line.rs b/src/line.rs index 722b553..595faf6 100644 --- a/src/line.rs +++ b/src/line.rs @@ -1,5 +1,5 @@ // Copyright 2013-2014 The CGMath Developers. For a full listing of the authors, -// refer to the Cargo.toml file at the top-level directionectory of this distribution. +// refer to the Cargo.toml file at the top-level directory of this distribution. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -38,7 +38,7 @@ impl, P: Point> Line

{ pub type Line2 = Line>; pub type Line3 = Line>; -/// Determines if an intersection between a ray and a line segments is found. +/// Determines if an intersection between a ray and a line segment is found. impl Intersect>> for (Ray2, Line2) { fn intersection(&self) -> Option> { let (ref ray, ref line) = *self; diff --git a/src/ray.rs b/src/ray.rs index 315c20b..6490e20 100644 --- a/src/ray.rs +++ b/src/ray.rs @@ -1,5 +1,5 @@ // Copyright 2013-2014 The CGMath Developers. For a full listing of the authors, -// refer to the Cargo.toml file at the top-level directionectory of this distribution. +// refer to the Cargo.toml file at the top-level directory of this distribution. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.