Issue #27993: Fix problems with the plural “objects” in docs and comments
diff --git a/Misc/HISTORY b/Misc/HISTORY
index fceda8a..5cb263c 100644
--- a/Misc/HISTORY
+++ b/Misc/HISTORY
@@ -15145,7 +15145,7 @@
module implementing deepcopy and normal (shallow) copy operations.
See the library reference manual.
-- Documentation strings for many objects types are accessible through
+- Documentation strings for many object types are accessible through
the __doc__ attribute. Modules, classes and functions support special
syntax to initialize the __doc__ attribute: if the first statement
consists of just a string literal, that string literal becomes the
diff --git a/Misc/NEWS b/Misc/NEWS
index 1fc6135..64200d2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1865,7 +1865,7 @@
- Issue #21350: Fix file.writelines() to accept arbitrary buffer objects,
as advertised. Patch by Brian Kearns.
-- Issue #20437: Fixed 43 potential bugs when deleting objects references.
+- Issue #20437: Fixed 43 potential bugs when deleting object references.
- Issue #21134: Fix segfault when str is called on an uninitialized
UnicodeEncodeError, UnicodeDecodeError, or UnicodeTranslateError object.