Skip to content

Commit bbad0f8

Browse files
committed
Readme format tweak
1 parent 5b14faa commit bbad0f8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ This function doesn't do anything meaningful, but hopefully it demonstrates the
5959
2. Is 2 zero?
6060
3. No, print message to console that 2 is not zero
6161
4. Invoke `stepsToZero(n-1)` where `n-1` evaluates to `1`
62+
6263
> Every recursive call adds a new invocation to the stack on top of the previous invocation
64+
6365
5. Is 1 zero?
6466
6. No, print message that 1 is not zero
6567
7. Invoke `stepsToZero(n-1)` where `n-1` evaluates to `0`

0 commit comments

Comments
 (0)