]> granicus.if.org Git - python/commitdiff
Fix typo in object.__getnewargs__() documentation (GH-7554)
authorAndrés Delfino <adelfino@gmail.com>
Sun, 10 Jun 2018 00:41:09 +0000 (21:41 -0300)
committerBerker Peksag <berker.peksag@gmail.com>
Sun, 10 Jun 2018 00:41:09 +0000 (03:41 +0300)
Doc/library/pickle.rst

index ea854fae194455ff2f411d4a59a5ed8ae4a5cafc..4f9d3596b649db4b488ec7982d3c3d73dbb51f94 100644 (file)
@@ -518,7 +518,7 @@ methods:
 
 .. method:: object.__getnewargs__()
 
-   This method serve a similar purpose as :meth:`__getnewargs_ex__`, but
+   This method serves a similar purpose as :meth:`__getnewargs_ex__`, but
    supports only positional arguments.  It must return a tuple of arguments
    ``args`` which will be passed to the :meth:`__new__` method upon unpickling.