diff options
author | Saniya Maheshwari <saniya.mah@gmail.com> | 2022-06-08 18:42:01 +0530 |
---|---|---|
committer | Saniya Maheshwari <saniya.mah@gmail.com> | 2022-06-08 19:28:43 +0530 |
commit | efd655f20f9b2b07ccffd3dcaa688955662a1622 (patch) | |
tree | 385fc8db81329e1886aac4681e8b836b981757ed /docs/userguide/datafiles.rst | |
parent | 37c6c7085989250e28a5743b05a3e72b1c72e64d (diff) | |
download | python-setuptools-git-efd655f20f9b2b07ccffd3dcaa688955662a1622.tar.gz |
Replaced single backticks with double backticks
For the `exclude_package_data` example added recently, there were single
backticks around `.gitignore`, `.gitattributes` etc. which leads to the
docs failing to build locally.
Diffstat (limited to 'docs/userguide/datafiles.rst')
-rw-r--r-- | docs/userguide/datafiles.rst | 4 |
1 files changed, 2 insertions, 2 deletions
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. |