From cb14da96ca82f4894c16cb38911208c7f1b60e3f Mon Sep 17 00:00:00 2001 From: Armin Primadi Date: Fri, 24 Aug 2018 05:56:13 +0700 Subject: [PATCH] Fix typo on policies documentation (#535) --- baselines/common/policies.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/baselines/common/policies.py b/baselines/common/policies.py index 4ad41cb..46207b5 100644 --- a/baselines/common/policies.py +++ b/baselines/common/policies.py @@ -72,7 +72,7 @@ class PolicyWithValue(object): def step(self, observation, **extra_feed): """ - Compute next action(s) given the observaion(s) + Compute next action(s) given the observation(s) Parameters: ---------- @@ -93,7 +93,7 @@ class PolicyWithValue(object): def value(self, ob, *args, **kwargs): """ - Compute value estimate(s) given the observaion(s) + Compute value estimate(s) given the observation(s) Parameters: ----------