Skip to content

Commit 8f039d3

Browse files
authored
Fix grammar and typos in mouse events basics
1 parent ffcb5da commit 8f039d3

File tree

1 file changed

+2
-2
lines changed
  • 2-ui/3-event-details/1-mouse-events-basics

1 file changed

+2
-2
lines changed

2-ui/3-event-details/1-mouse-events-basics/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ In cases when a single action initiates multiple events, their order is fixed. T
3939
```online
4040
Click the button below and you'll see the events. Try double-click too.
4141
42-
On the teststand below all mouse events are logged, and if there is more than a 1 second delay between them they are separated by a horizontal ruler.
42+
In the tests and below, all mouse events are logged, and if there is more than a 1 second delay between them, they are separated by a horizontal rule.
4343
44-
Also we can see the `button` property that allows to detect the mouse button, it's explained below.
44+
Also, we can see the `button` property that allows us to detect the mouse button; it's explained below.
4545
4646
<input onmousedown="return logMouse(event)" onmouseup="return logMouse(event)" onclick="return logMouse(event)" oncontextmenu="return logMouse(event)" ondblclick="return logMouse(event)" value="Click me with the right or the left mouse button" type="button"> <input onclick="logClear('test')" value="Clear" type="button"> <form id="testform" name="testform"> <textarea style="font-size:12px;height:150px;width:360px;"></textarea></form>
4747
```

0 commit comments

Comments
 (0)