diff --git a/gym/core.py b/gym/core.py index 96e5870ce4c..dc62bf54353 100644 --- a/gym/core.py +++ b/gym/core.py @@ -87,7 +87,7 @@ def step(self, action: ActType) -> Tuple[ObsType, float, bool, bool, dict]: """Run one timestep of the environment's dynamics. When end of episode is reached, you are responsible for calling :meth:`reset` to reset this environment's state. - Accepts an action and returns either a tuple `(observation, reward, terminated, truncated, info)`. + Accepts an action and returns a tuple `(observation, reward, terminated, truncated, info)`. Args: action (ActType): an action provided by the agent