Skip to content

Commit c038d25

Browse files
authored
Fix typo in functions
1 parent 9600db7 commit c038d25

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
@@ -244,7 +244,7 @@ This should be used sparingly, for exceedingly simple functions that can be easi
244244

245245
<!-- #region -->
246246
## Arguments
247-
A sequence of comma-separated variable names can specified in the function signature to indicated *positional* arguments for the function. For example, the following specifies `x`, `lower`, and `upper` as input arguments to a function, `is_bounded`:
247+
A sequence of comma-separated variable names can be specified in the function signature to indicated *positional* arguments for the function. For example, the following specifies `x`, `lower`, and `upper` as input arguments to a function, `is_bounded`:
248248

249249
```python
250250
def is_bounded(x, lower, upper):

0 commit comments

Comments
 (0)