diff options
author | partev <petrosyan@gmail.com> | 2023-10-09 04:44:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-09 04:44:15 (GMT) |
commit | 892ee72b3622de30acd12576b59259fc69e2e40a (patch) | |
tree | ad180e6e8d8ecea83160f24ade746b8cbd20b7b5 /Doc/tutorial | |
parent | 7e30821b17b56bb5ed9799f62eb45e448cb52c8e (diff) | |
download | cpython-892ee72b3622de30acd12576b59259fc69e2e40a.zip cpython-892ee72b3622de30acd12576b59259fc69e2e40a.tar.gz cpython-892ee72b3622de30acd12576b59259fc69e2e40a.tar.bz2 |
gh-110534 fix a URL redirect to wikipedia article on Fibonacci numbers (#110535)
Diffstat (limited to 'Doc/tutorial')
-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: |