From 8303199e55f24117eb5437258eb7756c51194f90 Mon Sep 17 00:00:00 2001 From: Ben McCormick Date: Sat, 24 Jan 2015 00:31:49 -0500 Subject: [PATCH] Minor Docs Fix Request returns undefined if there is no reply registered, not if there is no request. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3db67ed..26e86d4 100644 --- a/README.md +++ b/README.md @@ -281,7 +281,7 @@ Returns the instance of Commands. #### `request( requestName [, args...] )` Make a request for `requestName`. Optionally pass arguments to send along to the callback. Returns the reply, if one -exists. If there is no request then `undefined` will be returned. +exists. If there is no reply registered then `undefined` will be returned. You can make multiple requests at once by using the space-separated syntax.