Skip to content
Merged
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
1 change: 0 additions & 1 deletion docs/auth/email-link-auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ To initiate the authentication flow, present an interface that prompts the user
email: emailAuth, actionCodeSettings: acs)
.catchError((onError) => print('Error sending email verification $onError'))
.then((value) => print('Successfully sent email verification'));
});
```


Expand Down
2 changes: 1 addition & 1 deletion docs/perf-mon/_custom-code-traces.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ Note the following:
not use this type of custom attribute in your app):

```dart
customTrace.putAttribute(("email", user.getEmailAddress()); // Don't do this!
customTrace.putAttribute("email", user.getEmailAddress()); // Don't do this!
```

Data that exposes any personally identifiable information is subject to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ part of '../../firebase_core_platform_interface.dart';
/// instance, for example:
///
/// ```dart
/// Firebase.app('SecondaryApp`);
/// Firebase.app('SecondaryApp');
/// ```
class MethodChannelFirebaseApp extends FirebaseAppPlatform {
// ignore: public_member_api_docs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ part of '../firebase_core_web.dart';

/// The entry point for accessing a Firebase app instance.
///
/// To get an instance, call the the `app` method on the [FirebaseCore]
/// To get an instance, call the `app` method on the [FirebaseCore]
/// instance, for example:
///
/// ```dart
/// Firebase.app('SecondaryApp`);
/// Firebase.app('SecondaryApp');
/// ```
class FirebaseAppWeb extends FirebaseAppPlatform {
FirebaseAppWeb._(String name, FirebaseOptions options) : super(name, options);
Expand Down
Loading