From 47b921391f1df0c5c15e965b43b3a435830ed89b Mon Sep 17 00:00:00 2001 From: Natalia <124304+nessita@users.noreply.github.com> Date: Thu, 22 Aug 2024 18:14:04 -0300 Subject: [PATCH] Removed unnecessary trailing slashes in Sphinx intersphinx_mapping URLs. --- docs/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 0c633397ac0..2c578d5a8d8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -182,9 +182,9 @@ pygments_style = "trac" # Links to Python's docs should reference the most recent version of the 3.x # branch, which is located at this URL. intersphinx_mapping = { - "python": ("https://docs.python.org/3/", None), - "sphinx": ("https://www.sphinx-doc.org/en/master/", None), - "psycopg": ("https://www.psycopg.org/psycopg3/docs/", None), + "python": ("https://docs.python.org/3", None), + "sphinx": ("https://www.sphinx-doc.org/en/master", None), + "psycopg": ("https://www.psycopg.org/psycopg3/docs", None), } # Python's docs don't change every week.