summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-06-08 16:01:53 +0100
committerGitHub <noreply@github.com>2022-06-08 16:01:53 +0100
commit6fb421140914bf4eac1e46f6da641370a909d1bf (patch)
tree9572cea316d45375144520eb7a2fa2379c4c47ae /docs
parent37c6c7085989250e28a5743b05a3e72b1c72e64d (diff)
parent96df653d8779d811c65fd7f8eff9403798981982 (diff)
downloadpython-setuptools-git-6fb421140914bf4eac1e46f6da641370a909d1bf.tar.gz
Fix documentation local build (#3349)
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py2
-rw-r--r--docs/userguide/datafiles.rst4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 1023539c..90286916 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -103,7 +103,7 @@ github_repo_slug = f'{github_repo_org}/{github_repo_name}'
github_repo_url = f'{github_url}/{github_repo_slug}'
github_sponsors_url = f'{github_url}/sponsors'
extlinks = {
- 'user': (f'{github_sponsors_url}/%s', '@'), # noqa: WPS323
+ 'user': (f'{github_sponsors_url}/%s', '@%s'), # noqa: WPS323
'pypi': ('https://pypi.org/project/%s', '%s'), # noqa: WPS323
'wiki': ('https://wikipedia.org/wiki/%s', '%s'), # noqa: WPS323
}
diff --git a/docs/userguide/datafiles.rst b/docs/userguide/datafiles.rst
index 8622b6c4..e706617c 100644
--- a/docs/userguide/datafiles.rst
+++ b/docs/userguide/datafiles.rst
@@ -243,8 +243,8 @@ Sometimes, the ``include_package_data`` or ``package_data`` options alone
aren't sufficient to precisely define what files you want included. For example,
consider a scenario where you have ``include_package_data=True``, and you are using
a revision control system with an appropriate plugin.
-Sometimes developers add directory-specific marker files (such as `.gitignore`,
-`.gitkeep`, `.gitattributes`, or `.hgignore`), these files are probably being
+Sometimes developers add directory-specific marker files (such as ``.gitignore``,
+``.gitkeep``, ``.gitattributes``, or ``.hgignore``), these files are probably being
tracked by the revision control system, and therefore by default they will be
included when the package is installed.