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 9aa0b3c commit 0ccc0d4Copy full SHA for 0ccc0d4
src/boolean/not.md
@@ -4,7 +4,7 @@ Booleans can also be "negated" using the "not" operator - `!`.
4
5
```java,no_run
6
boolean haveOreosInHouse = true;
7
-boolean stuckToCalorieLimit = !haveOreos;
+boolean stuckToCalorieLimit = !haveOreosInHouse;
8
```
9
10
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
@@ -30,4 +30,4 @@ IO.println(isLetter);
30
This can be useful if you are stranded on Mars[^onmars] or
31
if you want to see if a character is in some range.
32
33
-[^onmars]: https://www.youtube.com/watch?v=k-GH3mbvUro
+[^onmars]: https://www.youtube.com/watch?v=0xkP_FQUsuM
0 commit comments