Skip to content

Commit 265693c

Browse files
committed
fixed typo
1 parent 3d23e9e commit 265693c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/Module2_EssentialsOfPython/Introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Python's syntax is quite flexible in terms of what it defines as a whitespace de
103103

104104
While Python's syntax is relatively forgiving, I am not: the [standard style](https://www.python.org/dev/peps/pep-0008/#indentation) for indenting in Python is to **use four space characters** for each level of indentation. It is strongly advised that you adhere to this standard. Most IDEs and consoles (including Jupyter notebooks) will automatically add a four-space indentation for you when you enter into the body of one of the aforementioned constructs.
105105

106-
Let's review these ruled by considering a few simple examples (including incorrect examples) of delimiting scope in Python.
106+
Let's review these rules by considering a few simple examples (including incorrect examples) of delimiting scope in Python.
107107

108108
```python
109109
# OK, but gross: The use of a single whitespace

0 commit comments

Comments
 (0)