diff options
author | Anderson Bravalheri <andersonbravalheri+github@gmail.com> | 2022-06-09 17:20:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 17:20:39 +0100 |
commit | 7bf2e6f408ddf18d92b27d93f8b51819e27b06ca (patch) | |
tree | 41c5b9d8a5c1426622eda756cbfdab0c9ef102f6 | |
parent | fa33b3bc2384460e02f13606504875d9be85029b (diff) | |
download | python-setuptools-git-7bf2e6f408ddf18d92b27d93f8b51819e27b06ca.tar.gz |
Fix verbatim in rst docs
-rw-r--r-- | docs/userguide/entry_point.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/userguide/entry_point.rst b/docs/userguide/entry_point.rst index 40b9ea42..ccc8491e 100644 --- a/docs/userguide/entry_point.rst +++ b/docs/userguide/entry_point.rst @@ -161,7 +161,7 @@ Then, we can add a GUI script entry point: hello-world = "timmins:hello_world" .. note:: - To be able to import `PySimpleGUI`, you need to add `pysimplegui` to your package dependencies. + To be able to import ``PySimpleGUI``, you need to add ``pysimplegui`` to your package dependencies. See :doc:`/userguide/dependency_management` for more information. Now, running: |