Skip to content

Commit c7843f5

Browse files
authored
[Basics] Update about.md (#3733)
Corrected sum in example on line 155.
1 parent e407e5d commit c7843f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

concepts/basics/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def add_two_numbers(number_one, number_two):
152152
# the variable will also return the value.
153153
>>> sum_with_return = add_two_numbers(5, 6)
154154
>>> print(sum_with_return)
155-
7
155+
11
156156
```
157157

158158
Functions that do not have an _explicit_ `return` expression will _implicitly_ return the [`None`][none] object.

0 commit comments

Comments
 (0)