diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-08 22:53:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-08 22:53:27 -0500 |
| commit | 3703869bc8008bc4bcb7092d1ec9c1e8c1c994e8 (patch) | |
| tree | 30ae66c9cb07bf3e24cd23511f0623f50335fdac | |
| parent | fe0541078d9a7720d9fa679f66209598bb6f4572 (diff) | |
| parent | 6a0c93bb62f45d1696ae8487c30090b279bb5f0f (diff) | |
| download | python-setuptools-git-3703869bc8008bc4bcb7092d1ec9c1e8c1c994e8.tar.gz | |
Merge pull request #2525 from jtr109/patch-1
fix typo
| -rw-r--r-- | changelog.d/2525.doc.rst | 1 | ||||
| -rw-r--r-- | docs/userguide/entry_point.rst | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/2525.doc.rst b/changelog.d/2525.doc.rst new file mode 100644 index 00000000..5d7ad5d3 --- /dev/null +++ b/changelog.d/2525.doc.rst @@ -0,0 +1 @@ +Fix typo in the document page about entry point. -- by :user:`jtr109` diff --git a/docs/userguide/entry_point.rst b/docs/userguide/entry_point.rst index edab4465..73820728 100644 --- a/docs/userguide/entry_point.rst +++ b/docs/userguide/entry_point.rst @@ -28,7 +28,7 @@ with ``__init__.py`` as: .. code-block:: python - def helloworld(): + def hello_world(): print("Hello world") and ``__main__.py`` providing a hook: |
