diff --git a/.github/workflows/pull-map-and-push-repo.yml b/.github/workflows/pull-map-and-push-repo.yml index ae80ab6..7f23256 100644 --- a/.github/workflows/pull-map-and-push-repo.yml +++ b/.github/workflows/pull-map-and-push-repo.yml @@ -100,7 +100,7 @@ jobs: do echo A:B ${sources_array[$i]}:${destinations_array[$i]} mkdir -p ${destinations_array[$i]} - # check if its a directoy, if so, do whats listed already, if not then + # check if its a directory, if so, do whats listed already, if not then if [[ -d "temp-pull/${sources_array[$i]}" ]] then echo "temp-pull/${sources_array[$i]} is a DIRECTORY." diff --git a/codelabs/codelab-friendlychat-web/steps/test.md b/codelabs/codelab-friendlychat-web/steps/test.md index eb59368..276562f 100644 --- a/codelabs/codelab-friendlychat-web/steps/test.md +++ b/codelabs/codelab-friendlychat-web/steps/test.md @@ -69,7 +69,7 @@ Using your IDE, open or import the 📁 `angularfire-start` directory from the c > aside positive > -> **Important**: After you have cloned or downloaded the code from the respository, access the 📁 `angularfire-start` directory in your console, and run `npm install` to install dependencies. +> **Important**: After you have cloned or downloaded the code from the repository, access the 📁 `angularfire-start` directory in your console, and run `npm install` to install dependencies. ## Create and set up a Firebase project Duration: 05:00 @@ -304,7 +304,7 @@ export const environment = { #### **Import AngularFire** -You will find that featues you've selected in the console were automatically routed in the `/angularfire-start/src/app/app.module.ts` file. This allows your app to use Firebase features and functionalities. However, to develop in a local environment, you need to connect them to use the Emulator suite. +You will find that features you've selected in the console were automatically routed in the `/angularfire-start/src/app/app.module.ts` file. This allows your app to use Firebase features and functionalities. However, to develop in a local environment, you need to connect them to use the Emulator suite. 1. In `/angularfire-start/src/app/app.module.ts`, find the `imports` section, and modify the provide functions to connect to Emulator suite in non-production environments. diff --git a/codelabs/codelab-friendlyeats-android/steps/index.lab.md b/codelabs/codelab-friendlyeats-android/steps/index.lab.md index a63441a..cf57632 100644 --- a/codelabs/codelab-friendlyeats-android/steps/index.lab.md +++ b/codelabs/codelab-friendlyeats-android/steps/index.lab.md @@ -548,7 +548,7 @@ service cloud.firestore { > > **Warning**: the rules above are extremely insecure! Never deploy a real Firebase app without writing custom security rules. -Let's change these rules to prevent unwanted data acesss or changes, open the `firestore.rules` file and replace the content with the following: +Let's change these rules to prevent unwanted data access or changes, open the `firestore.rules` file and replace the content with the following: ``` rules_version = '2'; diff --git a/docs/flutter/auth/password-auth.md b/docs/flutter/auth/password-auth.md index ce1acec..292eecf 100644 --- a/docs/flutter/auth/password-auth.md +++ b/docs/flutter/auth/password-auth.md @@ -63,7 +63,7 @@ temporary changes to this quota from the ## Sign in a user with an email address and password The steps for signing in a user with a password are similar to the steps for -creating a new account. From your your app's sign-in screen, call +creating a new account. From your app's sign-in screen, call `signInWithEmailAndPassword()`: ```dart diff --git a/docs/flutter/dynamic-links/create.md b/docs/flutter/dynamic-links/create.md index a9755ad..effef43 100644 --- a/docs/flutter/dynamic-links/create.md +++ b/docs/flutter/dynamic-links/create.md @@ -30,7 +30,7 @@ completed these steps and you can skip this section. 1. [Install and initialize the Firebase SDKs for Flutter](/docs/flutter/setup) if you haven't already done so. -1. From the root direcctory of your Flutter project, run the following +1. From the root directory of your Flutter project, run the following command to install the Dynamic Links plugin: ``` diff --git a/docs/flutter/perf-mon/_custom-code-traces.md b/docs/flutter/perf-mon/_custom-code-traces.md index 629d346..991420e 100644 --- a/docs/flutter/perf-mon/_custom-code-traces.md +++ b/docs/flutter/perf-mon/_custom-code-traces.md @@ -203,7 +203,7 @@ in the Firebase console, scroll down to the traces table, then click the appropriate subtab. The table displays some top metrics for each trace, and you can even sort the list by the percentage change for a specific metric. -If you click a trace name in the traces table, you can then click throug +If you click a trace name in the traces table, you can then click through various screens to explore the trace and drill down into metrics of interest. On most pages, you can use the **Filter** button (top-left of the screen) to filter the data by attribute, for example: diff --git a/docs/flutter/storage/handle-errors.md b/docs/flutter/storage/handle-errors.md index ae6c9fb..5cbb156 100644 --- a/docs/flutter/storage/handle-errors.md +++ b/docs/flutter/storage/handle-errors.md @@ -49,7 +49,7 @@ Code | Description `storage/quota-exceeded` | Quota on your Cloud Storage bucket has been exceeded. If you're on the no-cost tier, upgrade to a paid plan. If you're on a paid plan, reach out to Firebase support. `storage/unauthenticated` | User is unauthenticated, please authenticate and try again. `storage/unauthorized` | User is not authorized to perform the desired action, check your security rules to ensure they are correct. -`storage/retry-limit-exceeded` | The maximum time limit on an operation (upload, download, delete, etc.) has been excceded. Try uploading again. +`storage/retry-limit-exceeded` | The maximum time limit on an operation (upload, download, delete, etc.) has been exceeded. Try uploading again. `storage/invalid-checksum` | File on the client does not match the checksum of the file received by the server. Try uploading again. `storage/canceled` | User canceled the operation. `storage/invalid-event-name` | Invalid event name provided. Must be one of [`running`, `progress`, `pause`]