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 fd6a4e5
Showing 1 changed file with 1 addition and 1 deletion.
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 fd6a4e5

Please sign in to comment.