Skip to content

Commit 7eb35e0

Browse files
author
Jacob Hobbie
authored
Update article.md
Changed gender pronouns, did it for the whole page since I didn't see all of them at first.
1 parent d391eb1 commit 7eb35e0

File tree

1 file changed

+2
-2
lines changed
  • 1-js/02-first-steps/09-alert-prompt-confirm

1 file changed

+2
-2
lines changed

1-js/02-first-steps/09-alert-prompt-confirm/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ For example:
2222
alert("Hello");
2323
```
2424

25-
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".
25+
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".
2626

2727
## prompt
2828

@@ -40,7 +40,7 @@ It shows a modal window with a text message, an input field for the visitor and
4040
`default`
4141
: An optional second parameter, the initial value for the input field.
4242

43-
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.
43+
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.
4444

4545
The call to `prompt` returns the text from the field or `null` if the input was canceled.
4646

0 commit comments

Comments
 (0)