Skip to content

Commit 44a06e7

Browse files
authored
correct a typo in boolean-chain approach for leap (#655)
1 parent 5e65747 commit 44a06e7

File tree

1 file changed

+2
-2
lines changed
  • exercises/practice/leap/.approaches/boolean-chain

1 file changed

+2
-2
lines changed

exercises/practice/leap/.approaches/boolean-chain/content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Although in an interpreted language like Bash, that is less crucial than it migh
2828

2929
~~~~exercism/note
3030
The `if` command takes a _list of commands_ to use as the boolean conditions:
31-
if the command list exits with a zero return status, the "true" branch is followed;
32-
any other return status folls the "false" branch.
31+
if the command list exits with a zero return status, the "true" branch is taken;
32+
any other return status takes the "false" branch.
3333
3434
The double parentheses is is a builtin construct that can be used as a command.
3535
It is known as the arithmetic conditional construct.

0 commit comments

Comments
 (0)