From e84295bd9c9282a92b46bc7862d28b5d7a1664a7 Mon Sep 17 00:00:00 2001 From: Michal Petrik Date: Sat, 14 May 2022 17:31:58 +0200 Subject: [PATCH] Update 10-defining-functions.md --- .../060-functions/10-defining-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/02-introduction-to-python/060-functions/10-defining-functions.md b/website/content/02-introduction-to-python/060-functions/10-defining-functions.md index 6d0befa..67b24e6 100644 --- a/website/content/02-introduction-to-python/060-functions/10-defining-functions.md +++ b/website/content/02-introduction-to-python/060-functions/10-defining-functions.md @@ -19,7 +19,7 @@ This is the recipe for defining a Python function: 1. `)` closing parenthesis 1. `:` a colon -A function in Python is defined with the `def` keyword, followed by the function names, zero or more argument names contained in parenthesis `()`, and a colon `:` to indicate the start of the function. +A function in Python is defined with the `def` keyword, followed by the function name, zero or more argument names contained in parenthesis `()`, and a colon `:` to indicate the start of the function. The contents of the function then follow.