From 1f13faf54e2fb23ffcb05b753d0aab460633fcac Mon Sep 17 00:00:00 2001 From: Glenn Jackman Date: Tue, 16 Jan 2024 16:28:59 -0500 Subject: [PATCH] correct a typo --- exercises/practice/leap/.approaches/boolean-chain/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/practice/leap/.approaches/boolean-chain/content.md b/exercises/practice/leap/.approaches/boolean-chain/content.md index 9851ba95..9091e433 100644 --- a/exercises/practice/leap/.approaches/boolean-chain/content.md +++ b/exercises/practice/leap/.approaches/boolean-chain/content.md @@ -28,8 +28,8 @@ Although in an interpreted language like Bash, that is less crucial than it migh ~~~~exercism/note The `if` command takes a _list of commands_ to use as the boolean conditions: -if the command list exits with a zero return status, the "true" branch is followed; -any other return status folls the "false" branch. +if the command list exits with a zero return status, the "true" branch is taken; +any other return status takes the "false" branch. The double parentheses is is a builtin construct that can be used as a command. It is known as the arithmetic conditional construct.