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 e61bf2e commit fddd0a5Copy full SHA for fddd0a5
src/branching_logic/nested_ifs.md
@@ -17,7 +17,7 @@ if (age < 25) {
17
When an `if` is inside another `if` we say that it is "nested".
18
19
If you find yourself nesting more than a few `if`s that might be a sign that
20
-you should reach out for help.
+you should reach out for help[^or].
21
22
```java,no_run
23
if (...) {
@@ -30,3 +30,5 @@ if (...) {
30
}
31
32
```
33
+
34
+[^or]: Or a sign that you should keep reading. There are things I will show you that can help you avoid this - like "methods."
0 commit comments