From 5711f7b89103fe246067382aa72df9dfec526383 Mon Sep 17 00:00:00 2001 From: Jason Stallings Date: Tue, 4 Aug 2015 11:46:49 -0500 Subject: [PATCH] Better example titles. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9fd53e62..11fc6b40 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ npm install robotjs I [plan on](https://github.com/octalmage/robotjs/issues/64) using node-pre-gyp to make this process easier. ## Examples -Get the mouse location and move it. +Get the mouse position, move it, then click. ```JavaScript var robot = require("robotjs"); @@ -50,7 +50,7 @@ robot.moveMouse(mouse.x, mouse.y + 100); robot.mouseClick(); ``` -Type "Hello World". +Type "Hello World" then press enter. ```JavaScript var robot = require("robotjs");