Fix missing closing single quote in environment creation tutorial (#1023)

This commit is contained in:
Timon Erhart
2024-04-16 11:31:53 +02:00
committed by GitHub
parent 94a7909042
commit 01f7e7e5e5

View File

@@ -471,7 +471,7 @@ class GridWorldEnv(gym.Env):
# contains the registration code. For the GridWorld env, the registration # contains the registration code. For the GridWorld env, the registration
# code is run by importing ``gymnasium_env`` so if it were not possible to # code is run by importing ``gymnasium_env`` so if it were not possible to
# import gymnasium_env explicitly, you could register while making by # 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 youre allowed to pass only the environment ID # is especially useful when youre allowed to pass only the environment ID
# into a third-party codebase (eg. learning library). This lets you # into a third-party codebase (eg. learning library). This lets you
# register your environment without needing to edit the librarys source # register your environment without needing to edit the librarys source