From f6ffd8d30bdd41fd58f0bb5080968a7336f534c0 Mon Sep 17 00:00:00 2001 From: Nathan Vegdahl Date: Wed, 29 Mar 2017 13:20:58 -0700 Subject: [PATCH] Fixed a typo in a comment. --- src/math/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/mod.rs b/src/math/mod.rs index 6372ce3..ec009d2 100644 --- a/src/math/mod.rs +++ b/src/math/mod.rs @@ -152,7 +152,7 @@ pub fn coordinate_system_from_vector(v: Vector) -> (Vector, Vector, Vector) { /// from: The vector we're transforming. /// toz: The vector whose space we are transforming "from" into. /// -/// Returns he transformed vector. +/// Returns the transformed vector. pub fn zup_to_vec(from: Vector, toz: Vector) -> Vector { let (toz, tox, toy) = coordinate_system_from_vector(toz.normalized());