Skip to content

Commit

Permalink
Correct spelling core.py L90
Browse files Browse the repository at this point in the history
Removed "either" -- typo or grammatical error
  • Loading branch information
kartiksrinivas007 authored Nov 17, 2024
1 parent dcd1858 commit 9c4f181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gym/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9c4f181

Please sign in to comment.