Fix typos in documentation (#13344)
authorXtreak <tir.karthi@gmail.com>
Thu, 16 May 2019 04:34:24 +0000 (10:04 +0530)
committerTerry Jan Reedy <tjreedy@udel.edu>
Thu, 16 May 2019 04:34:24 +0000 (00:34 -0400)
Doc/faq/programming.rst
Doc/library/pickle.rst

index f14e8cc824ef747b8fe3d6ad7aba8d59eb97aa53..9660a701427fd63fbf1b14c67ebbfda194d5f806 100644 (file)
@@ -792,7 +792,7 @@ Its documentation looks like this::
       invoked using the three argument form.
 
 The slash at the end of the parameter list means that all three parameters are
-positional-only. Thus, calling :func:`pow` with keyword aguments would lead to
+positional-only. Thus, calling :func:`pow` with keyword arguments would lead to
 an error::
 
    >>> pow(x=3, y=4)
index 55005f009431d053a19d08ab1d12f6341e561e0e..27721e698826a15f9bf06c12841e1d81a9792cb1 100644 (file)
@@ -642,7 +642,7 @@ or both.
      by other classes as long as they implement :meth:`__setitem__`.
 
    * Optionally, a callable with a ``(obj, state)`` signature. This
-     callable allows the user to programatically control the state-updating
+     callable allows the user to programmatically control the state-updating
      behavior of a specific object, instead of using ``obj``'s static
      :meth:`__setstate__` method. If not ``None``, this callable will have
      priority over ``obj``'s :meth:`__setstate__`.