From 179a6f6bc8128ad008c7c6dccc2450f236324080 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Budav=C3=B6lgyi=20B=C3=A1lint?= <37620060+bala92x@users.noreply.github.com> Date: Tue, 16 Oct 2018 05:43:55 +0200 Subject: [PATCH] fix(guide): Fix typo and adjust examples (#19122) Subsitute to substitute, and adjusted example messages to fit with the example images. --- .../src/pages/guide/english/javascript/popup-boxes/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/pages/guide/english/javascript/popup-boxes/index.md b/client/src/pages/guide/english/javascript/popup-boxes/index.md index 0edb05c75f..5e146c3787 100644 --- a/client/src/pages/guide/english/javascript/popup-boxes/index.md +++ b/client/src/pages/guide/english/javascript/popup-boxes/index.md @@ -12,7 +12,7 @@ There are three different kinds of popup methods used in JavaScript: alert method displays messages that don't require the user to enter a response. Once this function is called, an alert dialog box will appear with the specified (optional) message. Users will be required to confirm the message before the alert goes away. ### Example: -`window.alert("Welcome to our website");` +`window.alert("Hello world");` ![MDN Alert Example](https://mdn.mozillademos.org/files/130/AlertHelloWorld.png) @@ -21,7 +21,7 @@ The