From e193ea3b48f13c947b6d1abb5745bfb4ad76cc62 Mon Sep 17 00:00:00 2001 From: Dexter Lohnes Date: Sun, 29 Dec 2024 13:31:09 -0800 Subject: [PATCH] Update 10.Functions.md --- 10.Functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/10.Functions.md b/10.Functions.md index ea426e5..3e3e751 100644 --- a/10.Functions.md +++ b/10.Functions.md @@ -69,9 +69,9 @@ Let's write the same code, but **with functions** this time. ### 1.3 Syntax In Python functions are defined by `def` keyword _followed by the name_ of the function -, then curly brackets `()` and semicolon `:`. +, then round brackets `()` and semicolon `:`. -***NOTE***: Take a look at **_indentation_**, in case it's wrong the `Pyhton` interpreter will not be able to compile the +***NOTE***: Take a look at **_indentation_**, in case it's wrong the `Python` interpreter will not be able to compile the code. #### Example