Docs: Fix typo in world api.md (#1854)

This commit is contained in:
el-u 2023-06-02 05:56:44 +02:00 committed by GitHub
parent b98080afee
commit 54b200451d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ on a single item. It can be used to reject placement of an item there.
### Your World
All code for your world implementation should be placed in a python package in
the `/worlds` directory. The starting point for the package is `__init.py__`.
the `/worlds` directory. The starting point for the package is `__init__.py`.
Conventionally, your world class is placed in that file.
World classes must inherit from the `World` class in `/worlds/AutoWorld.py`,