Skip to content
This repository was archived by the owner on Jun 4, 2019. It is now read-only.

Removed unneeded comma in third line #51

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion challenges/8.2.User_Defined_Functions/lesson.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down