diff --git a/README.md b/README.md index 7b0919f..6d17de8 100644 --- a/README.md +++ b/README.md @@ -485,8 +485,8 @@ def add(*a): #### Legal argument combinations with calls: ```python -def f(*args) # f(1, 2, 3) -def f(x, *args) # f(1, 2, 3) +def f(*args): # f(1, 2, 3) +def f(x, *args): # f(1, 2, 3) def f(*args, z) # f(1, 2, z=3) def f(x, *args, z) # f(1, 2, z=3) ```