Typo in the documentation for single_observation_space (#491)

This commit is contained in:
kvrban
2023-05-08 11:42:35 +02:00
committed by GitHub
parent 4ba61a32fa
commit 343c21ec98

View File

@@ -52,7 +52,7 @@ title: Vector
The observation space of an environment copy.::
>>> envs = gymnasium.vector.make("CartPole-v1", num_envs=3)
>>> envs.single_action_space
>>> envs.single_observation_space
Box([-4.8 ...], [4.8 ...], (4,), float32)
```