summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClemens Tolboom <clemens@build2be.com>2022-08-11 06:23:40 (GMT)
committerGitHub <noreply@github.com>2022-08-11 06:23:40 (GMT)
commitb9e956fccf60e2083d63bdfa30d7e04c910e94c2 (patch)
treef5430aa04b087c11a9ba434e43c93b67ef1d4be4
parent9af4aed73af0accffd26176c09aa263b68c8ca5d (diff)
downloadcpython-b9e956fccf60e2083d63bdfa30d7e04c910e94c2.zip
cpython-b9e956fccf60e2083d63bdfa30d7e04c910e94c2.tar.gz
cpython-b9e956fccf60e2083d63bdfa30d7e04c910e94c2.tar.bz2
Docs: replace 'currying' by 'partial function'. (#91814)
-rw-r--r--Doc/howto/functional.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst
index 1c3bd23..7d30c34 100644
--- a/Doc/howto/functional.rst
+++ b/Doc/howto/functional.rst
@@ -1223,6 +1223,8 @@ describing functional programming.
https://en.wikipedia.org/wiki/Coroutine: Entry for coroutines.
+https://en.wikipedia.org/wiki/Partial_application: Entry for the concept of partial function application.
+
https://en.wikipedia.org/wiki/Currying: Entry for the concept of currying.
Python-specific