From 4cee4c563f12c517a3af102d616f110598070483 Mon Sep 17 00:00:00 2001 From: Jason Stallings Date: Sun, 31 Aug 2014 13:43:16 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb2d02f1..348475f8 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,9 @@ Get the mouse location and move it. ```JavaScript var autonode = require("autonode.node"); + //Get the mouse position, retuns an object with x and y. var mouse=autonode.getMousePos(); - console.log("Mouse is at x:" + mouse.x + " y:" + mouse.y); //Move the mouse down by 100 pixels.