Procházet zdrojové kódy

Update create_env_tutorial.md (#410)

Camel-light před 1 rokem
rodič
revize
4373191abc
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      docs/content/create_env_tutorial.md

+ 2 - 2
docs/content/create_env_tutorial.md

@@ -37,7 +37,7 @@ class SimpleEnv(MiniGridEnv):
         return "grand mission"
 ```
 
-First, we need to create a class the inherits from `MiniGridEnv`, we call our class `SimpleEnv`. Then, we define a mission space, the recommended way to do it is to define a static function
+First, we need to create a class that inherits from `MiniGridEnv`, we call our class `SimpleEnv`. Then, we define a mission space, the recommended way to do it is to define a static function.
 
 ```python
 @staticmethod
@@ -235,4 +235,4 @@ def main():
     
 if __name__ == "__main__":
     main()
-```
+```