diff options
| author | Pablo Cárdenas <pablo.cardenas@imca.edu.pe> | 2022-03-26 14:33:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-26 14:33:27 -0500 |
| commit | 07108bb1793b4049d32c28b381d520f28976bb20 (patch) | |
| tree | 1914edfec2f08d4a3bcc22e114e5635763147b79 /docs | |
| parent | cc910e2235268963a5f05433f29dacc7804676c5 (diff) | |
| download | python-setuptools-git-07108bb1793b4049d32c28b381d520f28976bb20.tar.gz | |
Fix typo in quickstart section
The function should be between quotes like a string.
cli-name = mypkg.mymodule:some_func => cli-name = "mypkg.mymodule:some_func"
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/userguide/quickstart.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/userguide/quickstart.rst b/docs/userguide/quickstart.rst index 5be1078a..c72db26b 100644 --- a/docs/userguide/quickstart.rst +++ b/docs/userguide/quickstart.rst @@ -222,7 +222,7 @@ The following configuration examples show how to accomplish this: .. code-block:: toml [project.scripts] - cli-name = mypkg.mymodule:some_func + cli-name = "mypkg.mymodule:some_func" When this project is installed, a ``cli-name`` executable will be created. ``cli-name`` will invoke the function ``some_func`` in the |
