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