Skip to content

Commit 0ccc0d4

Browse files
committed
..
1 parent 9aa0b3c commit 0ccc0d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/boolean/not.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Booleans can also be "negated" using the "not" operator - `!`.
44

55
```java,no_run
66
boolean haveOreosInHouse = true;
7-
boolean stuckToCalorieLimit = !haveOreos;
7+
boolean stuckToCalorieLimit = !haveOreosInHouse;
88
```
99

1010
So in this case, I have stuck to my calorie limit if there are _not_ Oreos in the house.

src/characters/conversion_to_integers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ IO.println(isLetter);
3030
This can be useful if you are stranded on Mars[^onmars] or
3131
if you want to see if a character is in some range.
3232

33-
[^onmars]: https://www.youtube.com/watch?v=k-GH3mbvUro
33+
[^onmars]: https://www.youtube.com/watch?v=0xkP_FQUsuM

0 commit comments

Comments
 (0)