diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-10-09 04:52:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-09 04:52:36 (GMT) |
commit | fb8c0415a26690df5b97e89ff1cc8e6d6b2473c3 (patch) | |
tree | 27c109d5cd6798875af96be939751e6c27004cf9 | |
parent | ef4bd1b57ff2b0a908149d178b0b1fbdf9f7e247 (diff) | |
download | cpython-fb8c0415a26690df5b97e89ff1cc8e6d6b2473c3.zip cpython-fb8c0415a26690df5b97e89ff1cc8e6d6b2473c3.tar.gz cpython-fb8c0415a26690df5b97e89ff1cc8e6d6b2473c3.tar.bz2 |
[3.12] gh-110534 fix a URL redirect to wikipedia article on Fibonacci numbers (GH-110535) (#110536)
gh-110534 fix a URL redirect to wikipedia article on Fibonacci numbers (GH-110535)
(cherry picked from commit 892ee72b3622de30acd12576b59259fc69e2e40a)
Co-authored-by: partev <petrosyan@gmail.com>
-rw-r--r-- | Doc/tutorial/introduction.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 0fc75c7..172611d 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -480,7 +480,7 @@ First Steps Towards Programming Of course, we can use Python for more complicated tasks than adding two and two together. For instance, we can write an initial sub-sequence of the -`Fibonacci series <https://en.wikipedia.org/wiki/Fibonacci_number>`_ +`Fibonacci series <https://en.wikipedia.org/wiki/Fibonacci_sequence>`_ as follows:: >>> # Fibonacci series: |