From d326a9b96138afa6731092d7ea57cbead94c72ba Mon Sep 17 00:00:00 2001 From: guoguangwu Date: Mon, 18 Mar 2024 13:37:17 +0800 Subject: [PATCH] fix: typos Signed-off-by: guoguangwu --- metagpt/environment/base_env.py | 2 +- metagpt/environment/mincraft_env/mincraft_env.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/metagpt/environment/base_env.py b/metagpt/environment/base_env.py index 0e583ffb3..144e9df00 100644 --- a/metagpt/environment/base_env.py +++ b/metagpt/environment/base_env.py @@ -47,7 +47,7 @@ def mark_as_writeable(func): class ExtEnv(BaseModel): - """External Env to intergate actual game environment""" + """External Env to integrate actual game environment""" def _check_api_exist(self, rw_api: Optional[str] = None): if not rw_api: diff --git a/metagpt/environment/mincraft_env/mincraft_env.py b/metagpt/environment/mincraft_env/mincraft_env.py index 6aaa34187..fdc477164 100644 --- a/metagpt/environment/mincraft_env/mincraft_env.py +++ b/metagpt/environment/mincraft_env/mincraft_env.py @@ -20,7 +20,7 @@ from metagpt.utils.common import load_mc_skills_code, read_json_file, write_json class MincraftEnv(Environment, MincraftExtEnv): - """MincraftEnv, including shared memory of cache and infomation between roles""" + """MincraftEnv, including shared memory of cache and information between roles""" model_config = ConfigDict(arbitrary_types_allowed=True)