Skip to content

Commit

Permalink
Fix erroneous en-dash in code block
Browse files Browse the repository at this point in the history
Resolves #439
  • Loading branch information
hollasch committed Apr 5, 2020
1 parent f2ff2d1 commit 80f9131
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


----------------------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion books/RayTracingTheNextWeek.html
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 80f9131

Please sign in to comment.