Skip to content

Commit 4159921

Browse files
committed
Added whitespace
1 parent 023aa03 commit 4159921

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ Get the mouse location and move it.
2424
var robot = require("robotjs");
2525

2626
//Get the mouse position, returns an object with x and y.
27-
var mouse=robot.getMousePos();
27+
var mouse = robot.getMousePos();
2828
console.log("Mouse is at x:" + mouse.x + " y:" + mouse.y);
2929

3030
//Move the mouse down by 100 pixels.
31-
robot.moveMouse(mouse.x,mouse.y+100);
31+
robot.moveMouse(mouse.x, mouse.y + 100);
3232

3333
//Left click!
3434
robot.mouseClick();

0 commit comments

Comments
 (0)