aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Cristián Arenas Ulloa <cristian.arenas@gmail.com>2017-05-18 02:47:25 +0200
committerGravatar Paul Beusterien <paulbeusterien@google.com>2017-05-17 17:47:25 -0700
commit9a710f297bc4d9a1131557c08eebcff6708345b4 (patch)
tree9b09924df4b16a6f81b80dc691f990f0dd1a3838
parented4cec2ea9f56fcc26c8da467a70efea6e8a4472 (diff)
Fix typos (#15)
-rw-r--r--Firebase/Auth/Docs/threading.md4
-rw-r--r--ISSUE_TEMPLATE.md2
-rw-r--r--README.md2
3 files changed, 4 insertions, 4 deletions
diff --git a/Firebase/Auth/Docs/threading.md b/Firebase/Auth/Docs/threading.md
index 2f5b782..9c48a74 100644
--- a/Firebase/Auth/Docs/threading.md
+++ b/Firebase/Auth/Docs/threading.md
@@ -2,7 +2,7 @@
This document describes how Firebase Auth maintains thread-safety. The Firebase
Auth library (not including Firebase Auth UI and Auth Provider UIs for now)
-must be thread-safe, meaning deveopers are free to call any method in any
+must be thread-safe, meaning developers are free to call any method in any
thread at any time. Thus, all code that may take part in race conditions must
be protected in some way.
@@ -111,7 +111,7 @@ methods:
* The calling code should already be in the auth global work queue.
* The callback, if any, is provided by our own code, so it expects to called
in the auth global work queue as well. This is usually already the case,
- unless the method pass the callback to some other asychronous methods
+ unless the method pass the callback to some other asynchronous methods
outside our library, in which case we need to manually make the callback
called in the auth global work queue.
diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md
index 26eb9a9..dbc22f7 100644
--- a/ISSUE_TEMPLATE.md
+++ b/ISSUE_TEMPLATE.md
@@ -13,7 +13,7 @@
### [REQUIRED] Step 2: Describe your environment
- * XCode version: _____
+ * Xcode version: _____
* Firebase SDK version: _____
* Library version: _____
* Firebase Product: _____ (auth, database, storage, core, messaging, etc)
diff --git a/README.md b/README.md
index 58cbc32..ff39376 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@ This repository contains a subset of the Firebase iOS SDK source. It currently
includes FirebaseCore, FirebaseAuth, FirebaseDatabase, FirebaseMessaging, and
FirebaseStorage.
-Firebase is an app develpment platform with tools to help you build, grow and
+Firebase is an app development platform with tools to help you build, grow and
monetize your app. More information about Firebase can be found at
[https://firebase.google.com](https://firebase.google.com).