From 00000080831b453e1fb3aa39d31ec74b293456cd Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Tue, 31 Jan 2023 01:49:56 -0600 Subject: [PATCH] wtf unicode dash --- assignment-1/src/ray.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assignment-1/src/ray.rs b/assignment-1/src/ray.rs index c010cd8..0adfef6 100644 --- a/assignment-1/src/ray.rs +++ b/assignment-1/src/ray.rs @@ -74,7 +74,7 @@ mod tests { let point = ray_intersection_time(&ray, &sphere).map(|t| ray.eval(t)); - // the intersection point in this case is (0, 0, –6) + // the intersection point in this case is (0, 0, -6) assert_eq!(point, Some(Vec3::new(0.0, 0.0, -6.0))); }