From 54f22cf4db2e43063093a1b15d968a57a32b6e90 Mon Sep 17 00:00:00 2001 From: sorryformyself <30383339+sorryformyself@users.noreply.github.com> Date: Mon, 23 Mar 2020 04:54:54 +0800 Subject: [PATCH] Update the docstring in envs/toy_text/blackjack.py (#1829) * Update blackjack.py * Update blackjack.py Co-authored-by: pzhokhov --- gym/envs/toy_text/blackjack.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gym/envs/toy_text/blackjack.py b/gym/envs/toy_text/blackjack.py index 0cb6193e2..ddd8fc609 100644 --- a/gym/envs/toy_text/blackjack.py +++ b/gym/envs/toy_text/blackjack.py @@ -48,8 +48,8 @@ class BlackjackEnv(gym.Env): Face cards (Jack, Queen, King) have point value 10. Aces can either count as 11 or 1, and it's called 'usable' at 11. This game is placed with an infinite deck (or with replacement). - The game starts with each (player and dealer) having one face up and one - face down card. + The game starts with dealer having one face up and one face down card, while + player having two face up cards. (Virtually for all Blackjack games today). The player can request additional cards (hit=1) until they decide to stop (stick=0) or exceed 21 (bust).