Merge pull request #561 from vvnc/patch-2

Fix present simple, remove redundant word
This commit is contained in:
Ilya Kantor 2018-11-03 19:24:31 +03:00 committed by GitHub
commit 1ee1176df7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ There are two ways to tell the browser we don't want it to act:
- The main way is to use the `event` object. There's a method `event.preventDefault()`.
- If the handler is assigned using `on<event>` (not by `addEventListener`), then we can just return `false` from it.
In the example below there a click to links don't lead to URL change:
In the example below a click to links doesn't lead to URL change:
```html autorun height=60 no-beautify
<a href="/" onclick="return false">Click here</a>