Fix entry point key typo in docs (#2373)

This commit is contained in:
Tzu-ping Chung 2022-07-23 23:51:41 +08:00 committed by GitHub
parent 76a8c87ef4
commit 37e5b4f445
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ Creators are what actually perform the creation of a virtual environment. The bu
all achieve this by referencing a global install; but would be just as valid for a creator to install a brand new
entire python under the target path; or one could add additional creators that can create virtual environments for other
python implementations, such as IronPython. They must be registered under and entry point with key
``virtualenv.discovery`` , and the class must implement :class:`virtualenv.create.creator.Creator`:
``virtualenv.create`` , and the class must implement :class:`virtualenv.create.creator.Creator`:
.. code-block:: ini