Skip to content

Commit e6f02f0

Browse files
authored
Merge pull request #400 from RayTracing/fix-399
Fix OCR error in code, where "= O" should be "= 0"
2 parents 9423527 + aebda5a commit e6f02f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

books/RayTracingTheNextWeek.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@
880880

881881
class texture {
882882
public:
883-
virtual vec3 value(double u, double v, const vec3& p) const = O;
883+
virtual vec3 value(double u, double v, const vec3& p) const = 0;
884884
};
885885

886886
class constant_texture : public texture {

0 commit comments

Comments
 (0)