[Python-checkins] Enum docs: Remove unnecessary apostrophes (#92382)

ezio-melotti webhook-mailer at python.org
Fri May 6 05:53:09 EDT 2022


https://github.com/python/cpython/commit/291945bc6e4f2a46d8229fd2fcb181b52657cc8a
commit: 291945bc6e4f2a46d8229fd2fcb181b52657cc8a
branch: main
author: Alex Waygood <Alex.Waygood at Gmail.com>
committer: ezio-melotti <ezio.melotti at gmail.com>
date: 2022-05-06T11:53:00+02:00
summary:

Enum docs: Remove unnecessary apostrophes (#92382)

Replace "it's" with "its".

files:
M Doc/library/enum.rst

diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst
index 5db5639e81a5f..5829d4617893b 100644
--- a/Doc/library/enum.rst
+++ b/Doc/library/enum.rst
@@ -802,13 +802,13 @@ Utilities and Decorators
 
 .. decorator:: member
 
-   A decorator for use in enums: it's target will become a member.
+   A decorator for use in enums: its target will become a member.
 
    .. versionadded:: 3.11
 
 .. decorator:: nonmember
 
-   A decorator for use in enums: it's target will not become a member.
+   A decorator for use in enums: its target will not become a member.
 
    .. versionadded:: 3.11
 



More information about the Python-checkins mailing list