Skip to content

Commit 6ff6be8

Browse files
r04922101trekhleb
andauthored
fix typo "amd" -> "and" (#61)
Co-authored-by: Oleksii Trekhleb <[email protected]>
1 parent 3f18011 commit 6ff6be8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/functions/test_function_keyword_arguments.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def function_with_one_argument(number):
102102
# containing the positional arguments beyond the formal parameter list.
103103
# (*name must occur before **name.) For example, if we define a function like this:
104104
def test_function(first_param, *arguments, **keywords):
105-
"""This function accepts its arguments through "arguments" tuple amd keywords dictionary."""
105+
"""This function accepts its arguments through "arguments" tuple and keywords dictionary."""
106106
assert first_param == 'first param'
107107
assert arguments == ('second param', 'third param')
108108
assert keywords == {

0 commit comments

Comments
 (0)