From 7eb35e068f624738aad61961fb74558341884921 Mon Sep 17 00:00:00 2001 From: Jacob Hobbie Date: Fri, 30 Jun 2017 11:56:52 -0500 Subject: [PATCH] Update article.md Changed gender pronouns, did it for the whole page since I didn't see all of them at first. --- 1-js/02-first-steps/09-alert-prompt-confirm/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 807326ab..9c8d6314 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 @@ -22,7 +22,7 @@ For example: alert("Hello"); ``` -The mini-window with the message is called a *modal window*. The word "modal" means that the visitor can't interact with the rest of the page, press other buttons etc, until he deals with the window. In this case -- until he presses "OK". +The mini-window with the message is called a *modal window*. The word "modal" means that the visitor can't interact with the rest of the page, press other buttons etc, until they deal with the window. In this case -- until they press "OK". ## prompt @@ -40,7 +40,7 @@ It shows a modal window with a text message, an input field for the visitor and `default` : An optional second parameter, the initial value for the input field. -The visitor may type something in the prompt input field and press OK. Or he can cancel the input by pressing a CANCEL button or hitting the `key:Esc` key. +The visitor may type something in the prompt input field and press OK. Or they can cancel the input by pressing a CANCEL button or hitting the `key:Esc` key. The call to `prompt` returns the text from the field or `null` if the input was canceled.