Skip to content

Commit 94269c1

Browse files
committed
Typos.
1 parent 9b8d436 commit 94269c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

database/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ This rule is almost the same as the default one, the only difference is that it
9999

100100
## Private (User Specific)
101101

102-
This is where Firebase auth and rules are best used; each user can save their own data that they can only read and write.
102+
This is where Firebase auth and rules are best used; each user can have their own data that they can only read and write.
103103

104104
A common example is an app where users can manage a todo list.
105105

@@ -117,7 +117,7 @@ A common example is an app where users can manage a todo list.
117117
```
118118

119119
We have a main `todos` node. Inside that node each user will have their own sub node.
120-
Each sub node wil contain the todos from the specified user.
120+
Each sub node will contain the todos from the specified user.
121121

122122
The `auth.uid` parameter means the following:
123123

@@ -182,7 +182,7 @@ Very similar to the previous one, the only difference is the `auth` parameter in
182182

183183
## Realtime Database
184184

185-
Changes in the database can be read at realtime. Instead of using an `URLRequest` you must use an `URLStream` with a special `URLRequestHeader`.
185+
Changes in the database can be read at realtime. Instead of using an `URLLoader` you must use an `URLStream` with a special `URLRequestHeader`.
186186

187187
In this case we specify to read the contents of the `breakingnews` node.
188188

@@ -214,7 +214,7 @@ Remember to remove the event listener once you have finished working with the re
214214

215215
Auth works exactly the same as with non-realtime data, you only need to provide the `auth` parameter with a valid `authToken` in the URL.
216216

217-
## Modyfing the Database
217+
## Modifying the Database
218218

219219
You can add `(INSERT)`, remove `(DELETE)` and modify `(UPDATE)` data from the database. You only need to send your data `JSON` encoded.
220220

0 commit comments

Comments
 (0)