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