From 7dcf9003a7bf23a8ee8f9dcf5e7185edd6fc530c Mon Sep 17 00:00:00 2001 From: Oliver Dewitz <65554808+OliverDew@users.noreply.github.com> Date: Fri, 9 Apr 2021 13:14:34 +0200 Subject: [PATCH] Fixed typo in docstring --- strings/lower.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strings/lower.py b/strings/lower.py index b7abe9fc957d..9ae419123ceb 100644 --- a/strings/lower.py +++ b/strings/lower.py @@ -1,6 +1,6 @@ def lower(word: str) -> str: """ - Will convert the entire string to lowecase letters + Will convert the entire string to lowercase letters >>> lower("wow") 'wow'