Skip to content

Commit a7c57f8

Browse files
committed
fix(doc): typos in doc
1 parent 5647d8f commit a7c57f8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/api/NonoRobot.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,72 +19,72 @@ export type Direction = "bottom" | "left" | "right" | "top";
1919
export interface NonoRobot {
2020
/**
2121
* A mousedown DOM UI event.
22-
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or an mouse event data object
22+
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or a mouse event data object
2323
* @returns the robot (itself)
2424
*/
2525
mousedown(params?: EventTarget | string | (EventTargetInit & MouseEventInit)): this;
2626

2727
/**
2828
* A mouseclick DOM UI event.
29-
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or an mouse event data object
29+
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or a mouse event data object
3030
* @param count - The number of clicks to perform (one click if not specified)
3131
* @returns the robot (itself)
3232
*/
3333
click(params?: EventTarget | string | (EventTargetInit & MouseEventInit), count?: number): this;
3434

3535
/**
3636
* A dblclick DOM UI event.
37-
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or an mouse event data object
37+
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or a mouse event data object
3838
* @returns the robot (itself)
3939
*/
4040
dblclick(params?: EventTarget | string | (EventTargetInit & MouseEventInit)): this;
4141

4242
/**
4343
* An auxclick DOM UI event.
44-
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or an mouse event data object
44+
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or a mouse event data object
4545
* @param count - The number of clicks to perform (one click if not specified)
4646
* @returns the robot (itself)
4747
*/
4848
auxclick(params?: EventTarget | string | (EventTargetInit & MouseEventInit), count?: number): this;
4949

5050
/**
5151
* A mousemove DOM UI event.
52-
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or an mouse event data object
52+
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or a mouse event data object
5353
* @returns the robot (itself)
5454
*/
5555
mousemove(params?: EventTarget | string | (EventTargetInit & MouseEventInit)): this;
5656

5757
/**
5858
* A mouseup DOM UI event.
59-
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or an mouse event data object
59+
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or a mouse event data object
6060
* @returns the robot (itself)
6161
*/
6262
mouseup(params?: EventTarget | string | (EventTargetInit & MouseEventInit)): this;
6363

6464
/**
6565
* A mouseover DOM UI event.
66-
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or an mouse event data object
66+
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or a mouse event data object
6767
* @returns the robot (itself)
6868
*/
6969
mouseover(params?: EventTarget | string | (EventTargetInit & MouseEventInit)): this;
7070

7171
/**
7272
* A mouseout DOM UI event.
73-
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or an mouse event data object
73+
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or a mouse event data object
7474
* @returns the robot (itself)
7575
*/
7676
mouseout(params?: EventTarget | string | (EventTargetInit & MouseEventInit)): this;
7777

7878
/**
7979
* A mouseenter DOM UI event.
80-
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or an mouse event data object
80+
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or a mouse event data object
8181
* @returns the robot (itself)
8282
*/
8383
mouseenter(params?: EventTarget | string | (EventTargetInit & MouseEventInit)): this;
8484

8585
/**
8686
* A mouseleave DOM UI event.
87-
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or an mouse event data object
87+
* @param params - The targeted DOM objects, a css selector, or an EventTargetInit object or a mouse event data object
8888
* @returns the robot (itself)
8989
*/
9090
mouseleave(params?: EventTarget | string | (EventTargetInit & MouseEventInit)): this;

0 commit comments

Comments
 (0)