From 8dd95146090313929fc50b322aa876951b9bcff8 Mon Sep 17 00:00:00 2001 From: MirceaMazi Date: Tue, 7 Jan 2025 18:53:23 +0200 Subject: [PATCH] Fixed small grammar errors at the beginning and end of the game in the js file --- 05_Bagels/javascript/bagels.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/05_Bagels/javascript/bagels.js b/05_Bagels/javascript/bagels.js index 5a62a751..c0d519e2 100644 --- a/05_Bagels/javascript/bagels.js +++ b/05_Bagels/javascript/bagels.js @@ -84,7 +84,7 @@ async function main() } while (j >= 1) ; } print("\n"); - print("O.K. I HAVE A NUMBER IN MIND.\n"); + print("OK. I HAVE A NUMBER IN MIND.\n"); for (i = 1; i <= 20; i++) { while (1) { print("GUESS #" + i); @@ -142,7 +142,7 @@ async function main() print("\n"); } else { print("OH WELL.\n"); - print("THAT'S A TWENTY GUESS. MY NUMBER WAS " + a[1] + a[2] + a[3]); + print("THAT'S YOUR TWENTIETH GUESS. MY NUMBER WAS " + a[1] + a[2] + a[3]); } y++; print("PLAY AGAIN (YES OR NO)");