Skip to content

Commit

Permalink
Fix missing close string
Browse files Browse the repository at this point in the history
  • Loading branch information
turbotimon authored Apr 16, 2024
1 parent 94a7909 commit 3b72ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/gymnasium_basics/environment_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def close(self):
# contains the registration code. For the GridWorld env, the registration
# code is run by importing ``gymnasium_env`` so if it were not possible to
# import gymnasium_env explicitly, you could register while making by
# ``env = gymnasium.make('gymnasium_env:gymnasium_env/GridWorld-v0)``. This
# ``env = gymnasium.make('gymnasium_env:gymnasium_env/GridWorld-v0')``. This
# is especially useful when you’re allowed to pass only the environment ID
# into a third-party codebase (eg. learning library). This lets you
# register your environment without needing to edit the library’s source
Expand Down

0 comments on commit 3b72ba1

Please sign in to comment.