From 72e3f9d32f76b008d3a736c9fd44e1aa1681759c Mon Sep 17 00:00:00 2001 From: Kohki Mametani Date: Fri, 8 Mar 2019 05:21:57 +0900 Subject: [PATCH] Fixed typo (#656) --- gym/envs/registration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gym/envs/registration.py b/gym/envs/registration.py index 6b51f153b..1cb54ad8a 100644 --- a/gym/envs/registration.py +++ b/gym/envs/registration.py @@ -23,7 +23,7 @@ class EnvSpec(object): entry_point (Optional[str]): The Python entrypoint of the environment class (e.g. module.name:Class) trials (int): The number of trials to average reward over reward_threshold (Optional[int]): The reward threshold before the task is considered solved - local_only: True iff the environment is to be used only on the local machine (e.g. debugging envs) + local_only: True if the environment is to be used only on the local machine (e.g. debugging envs) kwargs (dict): The kwargs to pass to the environment class nondeterministic (bool): Whether this environment is non-deterministic even after seeding tags (dict[str:any]): A set of arbitrary key-value tags on this environment, including simple property=True tags