Grammar: Change "it's" to "its" in some places (#203) · cursospython/intermediatePython@69d9086 · GitHub
Skip to content

Commit 69d9086

Browse files
authored
Grammar: Change "it's" to "its" in some places (yasoob#203)
* Use "it's" for "it is" * Use "its" for the possessive
1 parent 42577ee commit 69d9086

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

classes.rst

Lines changed: 1 addition & 1 deletion

context_managers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Let's dissect this method a little.
169169
1. Python encounters the ``yield`` keyword. Due to this it creates a
170170
generator instead of a normal function.
171171
2. Due to the decoration, contextmanager is called with the function
172-
name (``open_file``) as it's argument.
172+
name (``open_file``) as its argument.
173173
3. The ``contextmanager`` decorator returns the generator wrapped by the
174174
``GeneratorContextManager`` object.
175175
4. The ``GeneratorContextManager`` is assigned to the ``open_file``

python_c_extension.rst

Lines changed: 3 additions & 3 deletions

0 commit comments

Comments
 (0)