Skip to content

Commit

Permalink
Readme format tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
mybrainishuge committed Dec 3, 2016
1 parent 5b14faa commit bbad0f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ This function doesn't do anything meaningful, but hopefully it demonstrates the
2. Is 2 zero?
3. No, print message to console that 2 is not zero
4. Invoke `stepsToZero(n-1)` where `n-1` evaluates to `1`
> Every recursive call adds a new invocation to the stack on top of the previous invocation
5. Is 1 zero?
6. No, print message that 1 is not zero
7. Invoke `stepsToZero(n-1)` where `n-1` evaluates to `0`
Expand Down

0 comments on commit bbad0f8

Please sign in to comment.