From 3b72ba10ac94b680bb5f378d36044b56db57c570 Mon Sep 17 00:00:00 2001 From: Timon Erhart <57718207+turbotimon@users.noreply.github.com> Date: Tue, 16 Apr 2024 11:22:30 +0200 Subject: [PATCH] Fix missing close string --- docs/tutorials/gymnasium_basics/environment_creation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/gymnasium_basics/environment_creation.py b/docs/tutorials/gymnasium_basics/environment_creation.py index 74f2392a6..50da76e16 100644 --- a/docs/tutorials/gymnasium_basics/environment_creation.py +++ b/docs/tutorials/gymnasium_basics/environment_creation.py @@ -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