From 0513da1fdd43d5a049adc3ebd1a490224f4d754b Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 1 May 2022 19:44:15 +0100 Subject: [PATCH] docs(triangle): fix typo --- subjects/triangle/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/triangle/README.md b/subjects/triangle/README.md index 02117e1a..e0d90da9 100644 --- a/subjects/triangle/README.md +++ b/subjects/triangle/README.md @@ -4,7 +4,7 @@ Create a function named `triangle` that takes a string and a number as arguments. Your function will return a string representing a triangle. -The string will denote the characters which construct the triangle, and the number denotes its depth. +The string will denote the characters which construct the triangle, and the number denotes its height. ### Example