Minor grammar fixes to readme
Project: http://git-wip-us.apache.org/repos/asf/usergrid-nodejs/repo Commit: http://git-wip-us.apache.org/repos/asf/usergrid-nodejs/commit/46c3df75 Tree: http://git-wip-us.apache.org/repos/asf/usergrid-nodejs/tree/46c3df75 Diff: http://git-wip-us.apache.org/repos/asf/usergrid-nodejs/diff/46c3df75 Branch: refs/heads/master Commit: 46c3df75d1b4a9f3c579aba49524eec51637048a Parents: 3031112 Author: brandon <[email protected]> Authored: Thu Feb 11 11:44:14 2016 -0800 Committer: brandon <[email protected]> Committed: Thu Feb 11 11:44:14 2016 -0800 ---------------------------------------------------------------------- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/usergrid-nodejs/blob/46c3df75/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index 9ae228f..3a7e640 100644 --- a/README.md +++ b/README.md @@ -49,9 +49,9 @@ The Usergrid Node.js SDK is built on top of [request](https://github.com/request ### Initialization -There are two fundamental ways to implement the Usergrid Node.js SDK: +There are two different ways of initializing the Usergrid Node.js SDK: -1. The singleton pattern is both convenient and enables the developer to use a globally available and always-initialized instance of Usergrid. +1. The singleton pattern is both convenient and enables the developer to use a globally available and always-initialized shared instance of Usergrid. var Usergrid = require('usergrid') Usergrid.init({ @@ -64,7 +64,7 @@ There are two fundamental ways to implement the Usergrid Node.js SDK: var Usergrid = require('usergrid') Usergrid.init() // defaults to use config.json -2. The Instance pattern enables the developer to manage instances of the Usergrid client independently and in an isolated fashion. The primary use-case for this is when an application connects to multiple Usergrid targets. +2. The instance pattern enables the developer to manage instances of the Usergrid client independently and in an isolated fashion. The primary use-case for this is when an application connects to multiple Usergrid targets. var UsergridClient = require('./node_modules/usergrid/lib/client') var client = new UsergridClient(config)
