From 3f5f7b0fa68a580e669fadfd3629e58d005f69b6 Mon Sep 17 00:00:00 2001 From: Zain Rizvi Date: Tue, 27 Dec 2022 00:33:43 -0600 Subject: [PATCH] Fix grammer in reinforcement learning tutorial Original version sounded confusing --- intermediate_source/reinforcement_q_learning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intermediate_source/reinforcement_q_learning.py b/intermediate_source/reinforcement_q_learning.py index 1522db24bc1..61e374a8b21 100644 --- a/intermediate_source/reinforcement_q_learning.py +++ b/intermediate_source/reinforcement_q_learning.py @@ -150,7 +150,7 @@ def __len__(self): # rewards from the uncertain far future less important for our agent # than the ones in the near future that it can be fairly confident # about. It also encourages agents to collect reward closer in time -# than equivalent rewards temporally future away. +# than equivalent rewards that are temporally far away in the future. # # The main idea behind Q-learning is that if we had a function # :math:`Q^*: State \times Action \rightarrow \mathbb{R}`, that could tell