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).