Skip to content

Commit d505ea1

Browse files
committed
Squashed commit of the following:
commit f6d49f5 Author: Noe Thalheim <[email protected]> Date: Sun Nov 13 11:50:55 2022 +0100 chore: rename variables fix #127
1 parent 20c384d commit d505ea1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/images_abstractions/images.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -415,16 +415,16 @@ end
415415
md"Let's invert some colors:"
416416

417417
# ╔═╡ b8f26960-ee0a-11ea-05b9-3f4bc1099050
418-
black = RGB(0.0, 0.0, 0.0)
418+
color_black = RGB(0.0, 0.0, 0.0)
419419

420420
# ╔═╡ 5de3a22e-ee0b-11ea-230f-35df4ca3c96d
421-
invert(black)
421+
invert(color_black)
422422

423423
# ╔═╡ 4e21e0c4-ee0b-11ea-3d65-b311ae3f98e9
424-
red = RGB(0.8, 0.1, 0.1)
424+
color_red = RGB(0.8, 0.1, 0.1)
425425

426426
# ╔═╡ 6dbf67ce-ee0b-11ea-3b71-abc05a64dc43
427-
invert(red)
427+
invert(color_red)
428428

429429
# ╔═╡ 846b1330-ee0b-11ea-3579-7d90fafd7290
430430
md"Can you invert the picture of Philip?"

0 commit comments

Comments
 (0)