From 90d04f27a74596c883c2dc1c5f9158d4ff45f624 Mon Sep 17 00:00:00 2001 From: artemmiyy <93732238+artemmiyy@users.noreply.github.com> Date: Thu, 14 Nov 2024 05:21:45 -0500 Subject: [PATCH] fixed typo in gymnasium/envs/toy_text/blackjack.py, 2-10 instead of 2-9 (#1250) --- gymnasium/envs/toy_text/blackjack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gymnasium/envs/toy_text/blackjack.py b/gymnasium/envs/toy_text/blackjack.py index 39816d94f..80fc7b5e0 100644 --- a/gymnasium/envs/toy_text/blackjack.py +++ b/gymnasium/envs/toy_text/blackjack.py @@ -59,7 +59,7 @@ class BlackjackEnv(gym.Env): The card values are: - Face cards (Jack, Queen, King) have a point value of 10. - Aces can either count as 11 (called a 'usable ace') or 1. - - Numerical cards (2-9) have a value equal to their number. + - Numerical cards (2-10) have a value equal to their number. The player has the sum of cards held. The player can request additional cards (hit) until they decide to stop (stick) or exceed 21 (bust,