Skip to content

Commit 7616b8d

Browse files
Arthur Cinaderflovilmart
Arthur Cinader
authored andcommitted
Fix capitalization, typo, and grammar mistake (#2533)
* Fix capitalization, typo, and grammar mistake * fix two typos.
1 parent fc73518 commit 7616b8d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

2.3.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Upgrading Parse Server to version 2.3.0
22

3-
Parse Server version 2.3.0 begins using unique indexes to ensure User's username and email are unique. This is not a backwards incompatable change, but it may in some cases cause a significant performance regression until the index finishes building. Building the unique index before upgrading your Parse Server version will eliminate the performance impact, and is a recommended step before upgrading any app to Parse Server 2.3.0. New apps starting with version 2.3.0 do not need to take any steps before beginning their project.
3+
Parse Server version 2.3.0 begins using unique indexes to ensure the User's username and email are unique. This is not a backwards incompatible change, but it may in some cases cause a significant performance regression until the index finishes building. Building the unique index before upgrading your Parse Server version will eliminate the performance impact, and is a recommended step before upgrading any app to Parse Server 2.3.0. New apps starting with version 2.3.0 do not need to take any steps before beginning their project.
44

55
If you are using MongoDB in Cluster or Replica Set mode, we recommend reading Mongo's [documentation on index building](https://docs.mongodb.com/v3.0/tutorial/build-indexes-on-replica-sets/) first. If you are not using these features, you can execute the following commands from the Mongo shell to build the unique index. You may also want to create a backup first.
66

@@ -58,7 +58,7 @@ In this case, you will need to remove the incorrect index. If your app relies on
5858

5959
## There is already non-unique data in the username or email field
6060

61-
This is possible if you have explicitly set some user's emails to null. If this is bogus data, and those null fields shoud be unset, you can unset the null emails with this command. If your app relies on the difference between null and unset emails, you will need to upgrade your app to treat null and unset emails the same before building the index and upgrading to Parse Server 2.3.0.
61+
This is possible if you have explicitly set some user's emails to null. If this is bogus data, and those null fields should be unset, you can unset the null emails with this command. If your app relies on the difference between null and unset emails, you will need to upgrade your app to treat null and unset emails the same before building the index and upgrading to Parse Server 2.3.0.
6262

6363
```js
6464
coll.update({ email: { $exists: true, $eq: null } }, { $unset: { email: '' } }, { multi: true })

src/Adapters/Files/FilesAdapter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// database adapter.
1313

1414
export class FilesAdapter {
15-
/* this method is responsible to store the file in order to be retrived later by it's file name
15+
/* This method is responsible to store the file in order to be retrieved later by its file name
1616
*
1717
* @param filename the filename to save
1818
* @param data the buffer of data from the file

0 commit comments

Comments
 (0)