We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20c384d commit f6d49f5Copy full SHA for f6d49f5
src/images_abstractions/images.jl
@@ -415,16 +415,16 @@ end
415
md"Let's invert some colors:"
416
417
# ╔═╡ b8f26960-ee0a-11ea-05b9-3f4bc1099050
418
-black = RGB(0.0, 0.0, 0.0)
+color_black = RGB(0.0, 0.0, 0.0)
419
420
# ╔═╡ 5de3a22e-ee0b-11ea-230f-35df4ca3c96d
421
-invert(black)
+invert(color_black)
422
423
# ╔═╡ 4e21e0c4-ee0b-11ea-3d65-b311ae3f98e9
424
-red = RGB(0.8, 0.1, 0.1)
+color_red = RGB(0.8, 0.1, 0.1)
425
426
# ╔═╡ 6dbf67ce-ee0b-11ea-3b71-abc05a64dc43
427
-invert(red)
+invert(color_red)
428
429
# ╔═╡ 846b1330-ee0b-11ea-3579-7d90fafd7290
430
md"Can you invert the picture of Philip?"
0 commit comments