Skip to content

Commit f6d5ba2

Browse files
committed
fix summary
1 parent 72a8b53 commit f6d5ba2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

using-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,10 @@ should work normally.
211211
- `function()` calls a function without any arguments, and
212212
`function(1, 2, 3)` calls a function with 1, 2 and 3 as arguments.
213213
- When a function is called, it does something and returns something.
214-
- `function(stuff)` is "replaced" with the return value in the code
214+
- `function(arguments)` is "replaced" with the return value in the code
215215
that called it. For example, `stuff = function()` calls a function,
216216
and then does `stuff = the_return_value` and the return value ends
217-
up in x.
217+
up in stuff.
218218
- Python comes with `print` and `input`. They are built-in functions.
219219
- Avoid variable names that conflict with built-in functions.
220220

0 commit comments

Comments
 (0)