Skip to content

Commit e57d1ea

Browse files
committed
Fix accidentally-indented code fence
1 parent e52678d commit e57d1ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

books/RayTracingTheRestOfYourLife.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3796,7 +3796,7 @@
37963796
world.add(make_shared<quad>(point3(213,554,227), vec3(130,0,0), vec3(0,0,105), light));
37973797

37983798

3799-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++ highlight
3799+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++ highlight
38003800
// Box
38013801
shared_ptr<hittable> box1 = box(point3(0,0,0), point3(165,330,165), white);
38023802
box1 = make_shared<rotate_y>(box1, 15);
@@ -3806,7 +3806,7 @@
38063806
// Glass Sphere
38073807
auto glass = make_shared<dielectric>(1.5);
38083808
world.add(make_shared<sphere>(point3(190,90,190), 90, glass));
3809-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++
3809+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C++
38103810

38113811
// Light Sources
38123812
auto empty_material = shared_ptr<material>();

0 commit comments

Comments
 (0)