Skip to content

Commit 9b5a0ef

Browse files
tirkarthiterryjreedy
authored andcommitted
Fix typos in documentation (#13344)
1 parent 4f82072 commit 9b5a0ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Doc/faq/programming.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ Its documentation looks like this::
792792
invoked using the three argument form.
793793

794794
The slash at the end of the parameter list means that all three parameters are
795-
positional-only. Thus, calling :func:`pow` with keyword aguments would lead to
795+
positional-only. Thus, calling :func:`pow` with keyword arguments would lead to
796796
an error::
797797

798798
>>> pow(x=3, y=4)

Doc/library/pickle.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ or both.
642642
by other classes as long as they implement :meth:`__setitem__`.
643643

644644
* Optionally, a callable with a ``(obj, state)`` signature. This
645-
callable allows the user to programatically control the state-updating
645+
callable allows the user to programmatically control the state-updating
646646
behavior of a specific object, instead of using ``obj``'s static
647647
:meth:`__setstate__` method. If not ``None``, this callable will have
648648
priority over ``obj``'s :meth:`__setstate__`.

0 commit comments

Comments
 (0)