Fix typos in documentation (#13344)
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index f14e8cc..9660a70 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -792,7 +792,7 @@
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)