From a80f0fb686e666246ba1739dbc0c87715b290236 Mon Sep 17 00:00:00 2001 From: KrishWu <66881117+KrishWu@users.noreply.github.com> Date: Thu, 6 Jun 2024 18:43:03 -0700 Subject: [PATCH] Update about.md small typo Small typo where length was spelled lenghth instead of length. --- concepts/functions/about.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/functions/about.md b/concepts/functions/about.md index e2f12ed33..89748088a 100644 --- a/concepts/functions/about.md +++ b/concepts/functions/about.md @@ -66,7 +66,7 @@ class Stubborn { response = reply; } string answer(const string& question) const { - if (question.lenghth() == 0) { return "";} + if (question.length() == 0) { return "";} return response; } private: