Skip to content

Commit

Permalink
Slight clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
wesselb committed Aug 25, 2021
1 parent 82e5d9b commit db114ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,10 +326,10 @@ def f(x: float, y: float = 3.0):
>>> f(1.0)
3.0

>>> f(1.0, y=4.0)
>>> f(1.0, 4.0)
4.0

>>> f(1.0, 4.0)
>>> f(1.0, y=4.0)
4.0
```

Expand Down

0 comments on commit db114ca

Please sign in to comment.