diff --git a/CHANGELOG.md b/CHANGELOG.md index 51d5eb14..bd2b2d53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,8 @@ Change Log -- Ray Tracing in One Weekend # v3.0.2 (in progress) ### _The Next Week_ -- Fix `shared_ptr` dereference and simplify code in `hittable_list::bounding_box()` (#435) +- Fix: `shared_ptr` dereference and simplify code in `hittable_list::bounding_box()` (#435) +- Fix: erroneous en-dash in code block (#439) ---------------------------------------------------------------------------------------------------- diff --git a/books/RayTracingTheNextWeek.html b/books/RayTracingTheNextWeek.html index d859693c..5ff2150f 100644 --- a/books/RayTracingTheNextWeek.html +++ b/books/RayTracingTheNextWeek.html @@ -956,7 +956,7 @@ virtual vec3 value(double u, double v, const vec3& p) const { auto sines = sin(10*p.x())*sin(10*p.y())*sin(10*p.z()); if (sines < 0) - return odd—>value(u, v, p); + return odd->value(u, v, p); else return even->value(u, v, p); }