Skip to content

Commit 4359724

Browse files
eallrichflovilmart
authored andcommitted
Small changes for formatting and grammar (#546)
* Use 'code' syntax on the entire command * Minor grammar adjustment * Sync pluralization
1 parent 8851317 commit 4359724

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

_includes/common/performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,7 @@ There are some limits in place to ensure the API can provide the data you need i
12901290

12911291
* Queries return 100 objects by default. Use the `limit` parameter to change this.
12921292
* Skips and limits can only be used on the outer query.
1293-
* Constraints that collide with each other will result in only one of the constraint being applied. An example of this would be two `equalTo` constraints over the same key with two different values, which contradicts itself (perhaps you're looking for 'contains').
1293+
* Constraints that collide with each other will result in only one of the constraints being applied. An example of this would be two `equalTo` constraints over the same key with two different values, which contradicts itself (perhaps you're looking for 'contains').
12941294
* No geo-queries inside compound OR queries.
12951295
* Using `$exists: false` is not advised.
12961296
* The `each` query method in the JavaScript SDK cannot be used in conjunction with queries using geo-point constraints.

_includes/parse-server/cache-adapters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var api = new ParseServer({
2626
});
2727
```
2828

29-
The `redisOptions` are passed directly to the redis.createClient method. For more informations, refer to the [redis.createClient](https://www.npmjs.com/package/redis#rediscreateclient) documentation.
29+
The `redisOptions` are passed directly to the redis.createClient method. For more information refer to the [redis.createClient](https://www.npmjs.com/package/redis#rediscreateclient) documentation.
3030

3131
Note that at the moment, only passing a single argument is supported.
3232

_includes/parse-server/deploying-heroku-mlab.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Here are the steps:
88
2. Create a Heroku account (if you don’t have one already) and use the Heroku Toolbelt to log in and prepare a new app in the same directory as your Express app. Take a look at Heroku's [Getting Started with Node.js guide](https://devcenter.heroku.com/articles/getting-started-with-nodejs#introduction) for more details.
99
3. Use the mLab addon: `heroku addons:create mongolab:sandbox` (or, you can create a Mongo instance yourself, either directly with mLab or your own box)
1010
4. Use heroku config and note the URI provided by mLab under the var MONGOLAB_URI
11-
5. Copy this URI and set it as a new config variable: heroku config:set `DATABASE_URI=mongodb://...`
11+
5. Copy this URI and set it as a new config variable: `heroku config:set DATABASE_URI=mongodb://...`
1212
6. Deploy it: `git push heroku master`
1313

1414
You may also refer to the Heroku Dev Center article on [Deploying a Parse Server to Heroku](https://devcenter.heroku.com/articles/deploying-a-parse-server-to-heroku).

0 commit comments

Comments
 (0)