From f80647f042a5a0d408a04b4bfc8e39d399c51f8e Mon Sep 17 00:00:00 2001 From: khayowa Date: Mon, 8 Aug 2022 22:50:51 +0200 Subject: [PATCH] Improved user instructions and corrected spelling mistake --- choose_your_own_adventure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/choose_your_own_adventure.py b/choose_your_own_adventure.py index b91083e..cc72f41 100644 --- a/choose_your_own_adventure.py +++ b/choose_your_own_adventure.py @@ -6,10 +6,10 @@ if answer == "left": answer = input( - "You come to a river, you can walk around it or swim accross? Type walk to walk around and swim to swim accross: ") + "You come to a river, you can walk around it or swim accross? Type walk to walk around or swim to swim accross: ") if answer == "swim": - print("You swam acrross and were eaten by an alligator.") + print("You swam across and were eaten by an alligator.") elif answer == "walk": print("You walked for many miles, ran out of water and you lost the game.") else: