From af32b4c65b4429b24479aa1d54c123d6c6fe9bce Mon Sep 17 00:00:00 2001 From: Ricardo Cuenca <ricardocuenk@gmail.com> Date: Sat, 15 Jun 2019 02:03:47 -0500 Subject: [PATCH] Fix docs typo: step() -> act() (#128) Fix docs typo: step() -> act() --- habitat/core/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/habitat/core/agent.py b/habitat/core/agent.py index 0b8f299b6..26b5b8537 100644 --- a/habitat/core/agent.py +++ b/habitat/core/agent.py @@ -4,7 +4,7 @@ # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. r"""Base implementation of agent inside habitat. To build agents inside habitat -the user should subclass ``habitat.Agent`` and implement the ``step()`` +the user should subclass ``habitat.Agent`` and implement the ``act()`` and ``reset()`` methods. """ -- GitLab