From c2f6ee0e997a682b9dc35c2b8203807e078cc32d Mon Sep 17 00:00:00 2001 From: gmpersons Date: Tue, 5 May 2015 09:46:01 -0400 Subject: [PATCH] Fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f60aa2cd..49aa9ebc 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Get the mouse location and move it. ```JavaScript var robot = require("robotjs"); -//Get the mouse position, retuns an object with x and y. +//Get the mouse position, returns an object with x and y. var mouse=robot.getMousePos(); console.log("Mouse is at x:" + mouse.x + " y:" + mouse.y);