From e71be6bd67b904eefe2a15b473104707d2c4ac51 Mon Sep 17 00:00:00 2001
From: ryfi <6692977+ryfi@users.noreply.github.com>
Date: Sun, 21 Apr 2024 11:16:31 -0700
Subject: [PATCH] Fixed typo on url for sphinx-doc that had an extra forward
slash at the end. A 404 page not found response is returned when navigating
to the current url if the forward slash is present.
---
{{cookiecutter.project_slug}}/docs/howto.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/{{cookiecutter.project_slug}}/docs/howto.rst b/{{cookiecutter.project_slug}}/docs/howto.rst
index 7d86351cf..2d734ceb2 100644
--- a/{{cookiecutter.project_slug}}/docs/howto.rst
+++ b/{{cookiecutter.project_slug}}/docs/howto.rst
@@ -26,7 +26,7 @@ Changes to files in `docs/_source` will be picked up and reloaded automatically.
Docstrings to Documentation
----------------------------------------------------------------------
-The sphinx extension `apidoc `_ is used to automatically document code using signatures and docstrings.
+The sphinx extension `apidoc `_ is used to automatically document code using signatures and docstrings.
Numpy or Google style docstrings will be picked up from project files and available for documentation. See the `Napoleon `_ extension for details.