@@ -148,7 +148,7 @@ each with their own argument patterns and help displays::
148148 subparsers = parser.add_subparsers()
149149
150150 parser_l = subparsers.add_parser('launch', help='Launch Control') # first subgroup
151- parser_l.add_argument('-m', '--missles ', action='store_true')
151+ parser_l.add_argument('-m', '--missiles ', action='store_true')
152152 parser_l.add_argument('-t', '--torpedos', action='store_true')
153153
154154 parser_m = subparsers.add_parser('move', help='Move Vessel') # second subgroup
@@ -676,7 +676,7 @@ functools
676676 (Contributed by Raymond Hettinger.)
677677
678678* To aid in porting programs from Python 2, the :func: `~functools.cmp_to_key `
679- function converts an old-style comparion function to
679+ function converts an old-style comparison function to
680680 modern :term: `key function `:
681681
682682 >>> # locale-aware sort order
@@ -866,7 +866,7 @@ float. However, since existing floating point value can be converted losslessly
866866to either a decimal or rational representation, it makes sense to add them to
867867the constructor and to support mixed-type comparisons.
868868
869- * The :class: `decimal.Decimal ` contructor now accepts :class: `float ` objects
869+ * The :class: `decimal.Decimal ` constructor now accepts :class: `float ` objects
870870 directly so there in no longer a need to use the :meth: `~decimal.Decimal.from_float `
871871 method (:issue: `8257 `).
872872
@@ -1506,7 +1506,7 @@ Changes to Python's build process and to the C API include:
15061506 list. It is equivalent to C99 *va_copy * but available on all python platforms
15071507 (:issue: `2443 `).
15081508
1509- * A new C API function :c:func: `PySys_SetArgvEx ` allows an embeddered
1509+ * A new C API function :c:func: `PySys_SetArgvEx ` allows an embedded
15101510 interpreter to set sys.argv without also modifying :attr: `sys.path `
15111511 (:issue: `5753 `).
15121512
0 commit comments