We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5895715 commit 9e86603Copy full SHA for 9e86603
1 file changed
Notes/07_Advanced_Topics/01_Variable_arguments.md
@@ -92,7 +92,7 @@ numbers = (2,3,4)
92
f(1, *numbers) # Same as f(1,2,3,4)
93
```
94
95
-Dictionaries can also be expaded into keyword arguments.
+Dictionaries can also be expanded into keyword arguments.
96
97
```python
98
options = {
0 commit comments