Skip to content

Commit fddd0a5

Browse files
committed
1 parent e61bf2e commit fddd0a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/branching_logic/nested_ifs.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (age < 25) {
1717
When an `if` is inside another `if` we say that it is "nested".
1818

1919
If you find yourself nesting more than a few `if`s that might be a sign that
20-
you should reach out for help.
20+
you should reach out for help[^or].
2121

2222
```java,no_run
2323
if (...) {
@@ -30,3 +30,5 @@ if (...) {
3030
}
3131
}
3232
```
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

Comments
 (0)