From 4159921894aaae5082c68c304e6643fbd69c6e50 Mon Sep 17 00:00:00 2001 From: elemenofi Date: Thu, 30 Jul 2015 15:26:33 -0300 Subject: [PATCH] Added whitespace --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b5b37d26..3e9e939a 100644 --- a/README.md +++ b/README.md @@ -24,11 +24,11 @@ Get the mouse location and move it. var robot = require("robotjs"); //Get the mouse position, returns an object with x and y. -var mouse=robot.getMousePos(); +var mouse = robot.getMousePos(); console.log("Mouse is at x:" + mouse.x + " y:" + mouse.y); //Move the mouse down by 100 pixels. -robot.moveMouse(mouse.x,mouse.y+100); +robot.moveMouse(mouse.x, mouse.y + 100); //Left click! robot.mouseClick();