From b86b23eda7ac14af01335334ee826371cacc8065 Mon Sep 17 00:00:00 2001 From: yongjun823 Date: Wed, 1 Jul 2020 19:09:37 +0900 Subject: [PATCH] Fix a typo in Python-API.md Fix behavior_spec to behavior_specs --- docs/Python-API.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Python-API.md b/docs/Python-API.md index c849f82f05..45efc2f77c 100644 --- a/docs/Python-API.md +++ b/docs/Python-API.md @@ -69,7 +69,7 @@ from mlagents_envs.environment import UnityEnvironment env = UnityEnvironment(file_name="3DBall", seed=1, side_channels=[]) # Start interacting with the evironment. env.reset() -behavior_names = env.behavior_spec.keys() +behavior_names = env.behavior_specs.keys() ... ``` **NOTE:** Please read [Interacting with a Unity Environment](#interacting-with-a-unity-environment)