Skip to content

Commit b6f9597

Browse files
committed
fix broken ref docs urls
1 parent 36740fb commit b6f9597

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

auth-next/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function authStateListener() {
5252
onAuthStateChanged(auth, (user) => {
5353
if (user) {
5454
// User is signed in, see docs for a list of available properties
55-
// https://firebase.google.com/docs/reference/js/firebase.User
55+
// https://firebase.google.com/docs/reference/js/v8/firebase.User
5656
const uid = user.uid;
5757
// ...
5858
} else {
@@ -72,7 +72,7 @@ function currentUser() {
7272

7373
if (user) {
7474
// User is signed in, see docs for a list of available properties
75-
// https://firebase.google.com/docs/reference/js/firebase.User
75+
// https://firebase.google.com/docs/reference/js/v8/firebase.User
7676
// ...
7777
} else {
7878
// No user is signed in.

auth/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function authStateListener() {
4343
firebase.auth().onAuthStateChanged((user) => {
4444
if (user) {
4545
// User is signed in, see docs for a list of available properties
46-
// https://firebase.google.com/docs/reference/js/firebase.User
46+
// https://firebase.google.com/docs/reference/js/v8/firebase.User
4747
var uid = user.uid;
4848
// ...
4949
} else {
@@ -60,7 +60,7 @@ function currentUser() {
6060

6161
if (user) {
6262
// User is signed in, see docs for a list of available properties
63-
// https://firebase.google.com/docs/reference/js/firebase.User
63+
// https://firebase.google.com/docs/reference/js/v8/firebase.User
6464
// ...
6565
} else {
6666
// No user is signed in.

firestore/test.firestore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ describe("firestore", () => {
600600
var docRef = db.collection("cities").doc("SF");
601601

602602
// Valid options for source are 'server', 'cache', or
603-
// 'default'. See https://firebase.google.com/docs/reference/js/firebase.firestore.GetOptions
603+
// 'default'. See https://firebase.google.com/docs/reference/js/v8/firebase.firestore.GetOptions
604604
// for more information.
605605
var getOptions = {
606606
source: 'cache'

snippets/auth-next/index/auth_current_user.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const user = auth.currentUser;
1212

1313
if (user) {
1414
// User is signed in, see docs for a list of available properties
15-
// https://firebase.google.com/docs/reference/js/firebase.User
15+
// https://firebase.google.com/docs/reference/js/v8/firebase.User
1616
// ...
1717
} else {
1818
// No user is signed in.

snippets/auth-next/index/auth_state_listener.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const auth = getAuth();
1111
onAuthStateChanged(auth, (user) => {
1212
if (user) {
1313
// User is signed in, see docs for a list of available properties
14-
// https://firebase.google.com/docs/reference/js/firebase.User
14+
// https://firebase.google.com/docs/reference/js/v8/firebase.User
1515
const uid = user.uid;
1616
// ...
1717
} else {

0 commit comments

Comments
 (0)