From 600733ee0f287db73b89800f578d1ca7b8b3a31f Mon Sep 17 00:00:00 2001 From: Somadina Mbadiwe Date: Tue, 6 Jun 2017 03:03:59 -0700 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/09-alert-prompt-confirm/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/09-alert-prompt-confirm/article.md b/1-js/02-first-steps/09-alert-prompt-confirm/article.md index d72bf5bf..fd449b79 100644 --- a/1-js/02-first-steps/09-alert-prompt-confirm/article.md +++ b/1-js/02-first-steps/09-alert-prompt-confirm/article.md @@ -87,7 +87,7 @@ For example: ```js run let isBoss = confirm("Are you the boss?"); -alert( isBoss ); // true is OK is pressed +alert( isBoss ); // true if OK is pressed ``` ## Summary