From 20ffe42e63039f7fbbdb8f66754a53e966fcc789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Thu, 12 Oct 2023 12:54:26 -0400 Subject: [PATCH] DOC: Fix typo in copyright notice in `readthedocs` config file Fix typo in copyright notice in `readthedocs` config file: remove unnecessary "s" suffixes after the author name and email strings. --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index babedb5..b784902 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -28,7 +28,7 @@ project = info["project"]["name"] _author = info["project"]["authors"][0]["name"] _email = info["project"]["authors"][1]["email"] -copyright = f"2022-{datetime.now().year}, {_author}s <{_email}s>" +copyright = f"2022-{datetime.now().year}, {_author} <{_email}>" author = f"{_author}s" _version = vers(project)