aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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).