Skip to content

Commit 5ae8c9b

Browse files
chore: Fix Typos Across FlutterFire Repository (#17223)
Co-authored-by: Russell Wheatley <[email protected]>
1 parent d177fab commit 5ae8c9b

File tree

50 files changed

+100
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+100
-100
lines changed

CHANGELOG.md

Lines changed: 37 additions & 37 deletions
Large diffs are not rendered by default.

analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ linter:
6363
always_specify_types: false
6464

6565
# Incompatible with `prefer_final_locals`
66-
# Having immutable local variables makes larger functions more predictible
66+
# Having immutable local variables makes larger functions more predictable
6767
# so we will use `prefer_final_locals` instead.
6868
unnecessary_final: false
6969

docs/auth/email-link-auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ You can streamline this flow for users who open the sign-in link on the same
103103
device they request the link, by storing their email address locally - for
104104
instance using SharedPreferences - when you send the sign-in email. Then,
105105
use this address to complete the flow.
106-
Do not pass the user's email in the redirect URL parameters and re-use it as
106+
Do not pass the user's email in the redirect URL parameters and reuse it as
107107
this may enable session injections.
108108
109109
After sign-in completion, any previous unverified mechanism of sign-in will be

docs/dynamic-links/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ completed these steps and you can skip this section.
3030
1. [Install and initialize the Firebase SDKs for Flutter](/docs/flutter/setup) if you
3131
haven't already done so.
3232

33-
1. From the root direcctory of your Flutter project, run the following
33+
1. From the root directory of your Flutter project, run the following
3434
command to install the Dynamic Links plugin:
3535

3636
```

docs/perf-mon/_custom-code-traces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ in the Firebase console, scroll down to the traces table, then click the
203203
appropriate subtab. The table displays some top metrics for each trace, and you
204204
can even sort the list by the percentage change for a specific metric.
205205

206-
If you click a trace name in the traces table, you can then click throug
206+
If you click a trace name in the traces table, you can then click through
207207
various screens to explore the trace and drill down into metrics of interest.
208208
On most pages, you can use the **Filter** button (top-left of the screen) to
209209
filter the data by attribute, for example:

packages/_flutterfire_internals/lib/src/interop_shimmer.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
// A library that mimicks package:firebase_core_web/firebase_core_web_interop.dart
5+
// A library that mimics package:firebase_core_web/firebase_core_web_interop.dart
66
// for platforms that do not target dart2js``
77

88
abstract class JSError {

packages/cloud_firestore/cloud_firestore/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@
300300
## 4.7.0
301301

302302
- **FEAT**: update dependency constraints to `sdk: '>=2.18.0 <4.0.0'` `flutter: '>=3.3.0'` ([#10946](https://github.com/firebase/flutterfire/issues/10946)). ([2772d10f](https://github.com/firebase/flutterfire/commit/2772d10fe510dcc28ec2d37a26b266c935699fa6))
303-
- **FEAT**: update librairies to be compatible with Flutter 3.10.0 ([#10944](https://github.com/firebase/flutterfire/issues/10944)). ([e1f5a5ea](https://github.com/firebase/flutterfire/commit/e1f5a5ea798c54f19d1d2f7b8f2250f8819f44b7))
303+
- **FEAT**: update libraries to be compatible with Flutter 3.10.0 ([#10944](https://github.com/firebase/flutterfire/issues/10944)). ([e1f5a5ea](https://github.com/firebase/flutterfire/commit/e1f5a5ea798c54f19d1d2f7b8f2250f8819f44b7))
304304

305305
## 4.6.0
306306

packages/cloud_firestore/cloud_firestore/lib/src/firestore.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ class FirebaseFirestore extends FirebasePluginPlatform {
278278
/// By default transactions are limited to 30 seconds of execution time. This
279279
/// timeout can be adjusted by setting the timeout parameter.
280280
///
281-
/// By default transactions will retry 5 times. You can change the number of attemps
281+
/// By default transactions will retry 5 times. You can change the number of attempts
282282
/// with [maxAttempts]. Attempts should be at least 1.
283283
Future<T> runTransaction<T>(
284284
TransactionHandler<T> transactionHandler, {

packages/cloud_firestore/cloud_firestore/test/collection_reference_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ void main() {
3131
});
3232

3333
test('extends $Query', () {
34-
// The `firestore` property is publically accessible via Query.
34+
// The `firestore` property is publicly accessible via Query.
3535
// Is there a better way to test this?
3636
CollectionReference ref = firestore.collection('foo');
3737

packages/cloud_firestore/cloud_firestore_platform_interface/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@
254254
## 5.14.0
255255

256256
- **FEAT**: update dependency constraints to `sdk: '>=2.18.0 <4.0.0'` `flutter: '>=3.3.0'` ([#10946](https://github.com/firebase/flutterfire/issues/10946)). ([2772d10f](https://github.com/firebase/flutterfire/commit/2772d10fe510dcc28ec2d37a26b266c935699fa6))
257-
- **FEAT**: update librairies to be compatible with Flutter 3.10.0 ([#10944](https://github.com/firebase/flutterfire/issues/10944)). ([e1f5a5ea](https://github.com/firebase/flutterfire/commit/e1f5a5ea798c54f19d1d2f7b8f2250f8819f44b7))
257+
- **FEAT**: update libraries to be compatible with Flutter 3.10.0 ([#10944](https://github.com/firebase/flutterfire/issues/10944)). ([e1f5a5ea](https://github.com/firebase/flutterfire/commit/e1f5a5ea798c54f19d1d2f7b8f2250f8819f44b7))
258258

259259
## 5.13.0
260260

0 commit comments

Comments
 (0)