Skip to content

Commit ce32e46

Browse files
martonivanBethanyG
authored andcommitted
Typo in introduction.md
An extra space in the function name where it was calling prevented simple copy-paste usage.
1 parent be11464 commit ce32e46

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

concepts/basics/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Functions that do not have an explicit `return` expression will return [`None`][
5757
def add_two_numbers(number_one, number_two):
5858
result = number_one + number_two
5959

60-
>>> print(add_two_number s(5, 7))
60+
>>> print(add_two_numbers(5, 7))
6161
None
6262
```
6363

0 commit comments

Comments
 (0)