Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pull-map-and-push-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
4 changes: 2 additions & 2 deletions codelabs/codelab-friendlychat-web/steps/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion codelabs/codelab-friendlyeats-android/steps/index.lab.md
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion docs/flutter/auth/password-auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/flutter/dynamic-links/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

```
Expand Down
2 changes: 1 addition & 1 deletion docs/flutter/perf-mon/_custom-code-traces.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/flutter/storage/handle-errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`]
Expand Down