summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuanPei Li <conbas2019@gmail.com>2021-01-08 17:35:33 +0800
committerGitHub <noreply@github.com>2021-01-08 17:35:33 +0800
commitc1b2b1a60f7d099e841d6bbcac3531c5cb2efc1b (patch)
treed65ed3afc2f998b01f01f6abe2492f8a92c07698
parent95a9c474d30acc729b536f9ad88ead7efab62c5d (diff)
downloadpython-setuptools-git-c1b2b1a60f7d099e841d6bbcac3531c5cb2efc1b.tar.gz
fix typo
Fix a difference between the name of function definition and calling.
-rw-r--r--docs/userguide/entry_point.rst2
1 files changed, 1 insertions, 1 deletions
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: