From 3ea2a634053cdfe21032b6623550ccb1a69943bd Mon Sep 17 00:00:00 2001 From: Raymond Daniels Date: Tue, 23 Oct 2018 14:42:08 -0400 Subject: [PATCH] Removed unneeded comma in third line "...and, must be indented." to "...and must be indented." --- challenges/8.2.User_Defined_Functions/lesson.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/8.2.User_Defined_Functions/lesson.md b/challenges/8.2.User_Defined_Functions/lesson.md index 4c4ec2c..9a26a63 100644 --- a/challenges/8.2.User_Defined_Functions/lesson.md +++ b/challenges/8.2.User_Defined_Functions/lesson.md @@ -2,7 +2,7 @@ The keyword `def` introduces a function definition. It must be followed by the function name and a parenthesized list of formal parameters (if any). -The statements that form the body of the function start at the next line, and must be indented. +The statements that form the body of the function start at the next line and must be indented. After a function has been defined, it can be called by typing the function name immediately followed by parentheses that contain the function's arguments (if any). - https://docs.python.org/3/glossary.html#term-function - https://docs.python.org/3/glossary.html#term-parameter