Skip to content

Commit 219a9e3

Browse files
Panzer0svekars
andauthored
Minor comment typo fix (#2745)
Corrected "it's" to "its", which is the correct form given the context. Co-authored-by: Svetlana Karslioglu <svekars@meta.com>
1 parent 7a6e642 commit 219a9e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intermediate_source/reinforcement_q_learning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def optimize_model():
403403
num_episodes = 50
404404

405405
for i_episode in range(num_episodes):
406-
# Initialize the environment and get it's state
406+
# Initialize the environment and get its state
407407
state, info = env.reset()
408408
state = torch.tensor(state, dtype=torch.float32, device=device).unsqueeze(0)
409409
for t in count():

0 commit comments

Comments
 (0)