Updated readme with better installation instructions
diff --git a/README.md b/README.md
index 0130756..2c2c9f5 100644
--- a/README.md
+++ b/README.md
@@ -25,15 +25,19 @@
 
 ### Installation
 
-Install from [npm](https://www.npmjs.com/package/usergrid), specifying the version >= 2.0.0-rc.0:
+To install the latest **stable** build:
 
-    npm install usergrid >=2.0.0-rc.0
+    npm install usergrid
 
-If you want to run the latest build, simply:
+To install the 2.0 release candidates, install from [npm](https://www.npmjs.com/package/usergrid), specifying the version `~2.0.0-rc`:
+
+    npm install usergrid@~2.0.0-rc
+
+(Or add `usergrid: ~2.0.0-rc` to your package.json)
+
+If you want access to the latest development build (you will need to run `npm install` to keep it up to date):
 
     npm install r3mus/usergrid-nodejs
-    
-(though you will need to run `npm install` to keep it up to date)
 
 ### Usage
 
diff --git a/tests/lib/response.test.js b/tests/lib/response.test.js
index d328eed..2672153 100644
--- a/tests/lib/response.test.js
+++ b/tests/lib/response.test.js
@@ -181,7 +181,7 @@
         })
     })
 
-    it('should load a new page of entities using a UsergridClient instance argument', function(done) {
+    it('should load a new page of entities by passing an instance of UsergridClient', function(done) {
         firstResponse.loadNextPage(client, function(err, usergridResponse) {
             usergridResponse.first.uuid.should.not.equal(firstResponse.first.uuid)
             usergridResponse.entities.length.should.equal(2)