Skip to content

Commit

Permalink
Update about.md small typo
Browse files Browse the repository at this point in the history
Small typo where length was spelled lenghth instead of length.
  • Loading branch information
KrishWu authored Jun 7, 2024
1 parent d50951d commit a80f0fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion concepts/functions/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a80f0fb

Please sign in to comment.