From 39394b96f2f3ab8ce00ff505480026be527878c3 Mon Sep 17 00:00:00 2001 From: Oleksandr Onufrienko Date: Thu, 16 May 2019 16:40:48 +0300 Subject: [PATCH] Changed "phrase" to "phase" for capture param --- 2-ui/2-events/01-introduction-browser-events/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/2-events/01-introduction-browser-events/article.md b/2-ui/2-events/01-introduction-browser-events/article.md index 5da5257b..ee69e9df 100644 --- a/2-ui/2-events/01-introduction-browser-events/article.md +++ b/2-ui/2-events/01-introduction-browser-events/article.md @@ -228,7 +228,7 @@ element.addEventListener(event, handler[, options]); `options` : An additional optional object with properties: - `once`: if `true`, then the listener is automatically removed after it triggers. - - `capture`: the phrase where to handle the event, to be covered later in the chapter . For historical reasons, `options` can also be `false/true`, that's the same as `{capture: false/true}`. + - `capture`: the phase where to handle the event, to be covered later in the chapter . For historical reasons, `options` can also be `false/true`, that's the same as `{capture: false/true}`. - `passive`: if `true`, then the handler will not `preventDefault()`, we'll cover that later in .