diff options
author | wulmer <wulmer@users.noreply.github.com> | 2023-07-23 11:56:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-23 11:56:09 (GMT) |
commit | c51f766ebb5974024d5fc138f71350a6fb30c9d9 (patch) | |
tree | 3050bd9b8e956cc53d31a8f752d5b75c604d7c79 /Doc/howto/functional.rst | |
parent | 0574873e60e54bd4873025b4380116992e4923b9 (diff) | |
download | cpython-c51f766ebb5974024d5fc138f71350a6fb30c9d9.zip cpython-c51f766ebb5974024d5fc138f71350a6fb30c9d9.tar.gz cpython-c51f766ebb5974024d5fc138f71350a6fb30c9d9.tar.bz2 |
[3.11] gh-101100: Fix some broken sphinx references (GH-107095). (#107120)
Diffstat (limited to 'Doc/howto/functional.rst')
-rw-r--r-- | Doc/howto/functional.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst index 64f2293..efc25da 100644 --- a/Doc/howto/functional.rst +++ b/Doc/howto/functional.rst @@ -1072,8 +1072,8 @@ write the obvious :keyword:`for` loop:: A related function is :func:`itertools.accumulate(iterable, func=operator.add) <itertools.accumulate>`. It performs the same calculation, but instead of -returning only the final result, :func:`accumulate` returns an iterator that -also yields each partial result:: +returning only the final result, :func:`~itertools.accumulate` returns an iterator +that also yields each partial result:: itertools.accumulate([1, 2, 3, 4, 5]) => 1, 3, 6, 10, 15 |