From 7155007733480e723d983e49a4f7dddda94d5386 Mon Sep 17 00:00:00 2001 From: AMOgle <141525298+AMOgle@users.noreply.github.com> Date: Wed, 15 Oct 2025 13:10:58 -0400 Subject: [PATCH] Following along Intro to Git and Github by Google on Coursera The typo found in the doc string in the coursera video "recieved" was already corrected to "received", added a space between the three quotes in the doc string (""") and the word "Checks" just to have something commit so I can follow along with the course. --- validations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validations.py b/validations.py index 2628db4..2c521eb 100644 --- a/validations.py +++ b/validations.py @@ -2,7 +2,7 @@ def validate_user(username, minlen): - """Checks if the received username matches the required conditions.""" + """ Checks if the received username matches the required conditions.""" if type(username) != str: raise TypeError("username must be a string") if minlen < 1: