Skip to content

Commit cf17b38

Browse files
committed
Typo
1 parent ae10e50 commit cf17b38

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ You can read the guides in any order but it is recommended to start with the [Fi
5454

5555
Firebase ANEs are based on the Android and iOS official SDKs, providing all of their native features.
5656

57-
These guides are based on the JavaScript SDK, while keeping the same functionality inside the AIR runtime instead of a web browser.
57+
These guides are based on the JavaScript SDK, which provides the same functionality from the Web browser but inside the AIR runtime.
5858

5959
### **Which are the benefits of using these guides?**
6060

auth/README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,12 @@ Here is where things start getting hard since there's no official documentation.
141141
2. This success page contains a `code` in its URL, thankfully we won't need to parse the code, only check if it exists.
142142
3. The success page URL varies its form depending on the provider that was used.
143143

144-
* Facebook success URL code = `?code=`
145-
* Twitter success URL code = `?state=`
146-
* Google success URL code = `#state=`
144+
* Facebook success URL code: `?code=`
145+
* Twitter success URL code: `?state=`
146+
* Google success URL code: `#state=`
147147

148-
In the previous snippet, a conditional was added to detect if the code exists in any of the 3 providers previously mentioned.
149-
150-
4. Once we have an URL that contains the `code` we save it to a String and then call our next function `getAccountInfo()`
148+
In the previous snippet, a conditional was added to detect if the code exists in any of the 3 providers previously mentioned. It also checks that there isn't an error code in the URL.
149+
Once we have an URL that contains the `code` we save it to a String and then call our next function `getAccountInfo()`
151150

152151
```actionscript
153152
private function getAccountInfo():void

storage/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ These rules are very similar to the `Auth` default rules. They mean that any aut
4646

4747
## Public Reading and Writing
4848

49-
The following rules allows any user to upload, delete and mofify files from your entire bucket. Use this only while developing and testing.
49+
The following rules allows any user to upload, delete and modify files from your entire bucket. Use this only while developing and testing.
5050

5151
```
5252
service firebase.storage {

0 commit comments

Comments
 (0)