Skip to content

Commit 46053a3

Browse files
committed
Functions: fix bad formatting of monospace in italics
1 parent 699be57 commit 46053a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/Module2_EssentialsOfPython/Functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Write a function named `count_even`. It should accept one input argument, named
137137

138138
<!-- #region -->
139139
## The `return` Statement
140-
In general, any Python object can follow a function's `return` statement. Furthermore, an **empty** `return` statement can be specified, or the **return** statement of a function can be omitted altogether. In both of these cases, *the function will return the `None` object*.
140+
In general, any Python object can follow a function's `return` statement. Furthermore, an **empty** `return` statement can be specified, or the **return** statement of a function can be omitted altogether. In both of these cases, *the function will return the* `None` *object*.
141141

142142
```python
143143
# this function returns `None`

0 commit comments

Comments
 (0)