From d697f7b91322fc0581b68c1f2ed9d0840d1c919d Mon Sep 17 00:00:00 2001 From: eAlasdair Date: Thu, 3 Sep 2020 13:32:26 +1200 Subject: [PATCH] fix strange sentence structure --- codewof/programming/content/en/triangle-pattern/question.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codewof/programming/content/en/triangle-pattern/question.md b/codewof/programming/content/en/triangle-pattern/question.md index b268be0d2..21d60c22e 100644 --- a/codewof/programming/content/en/triangle-pattern/question.md +++ b/codewof/programming/content/en/triangle-pattern/question.md @@ -11,4 +11,4 @@ For example if we call `triangle(5)` we would expect the output to be: ***** ``` -If `x` is less than 1 (inclusive), your function should **print** `That isn't a triangle!` +If `x` is 1 or less, your function should **print** `That isn't a triangle!`