Skip to content

Commit 3224d7d

Browse files
committed
Fix typos.
1 parent d30a4d0 commit 3224d7d

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

src/main/java/com/google/firebase/auth/FirebaseUserManager.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ UserImportResult importUsers(UserImportRequest request) throws FirebaseAuthExcep
227227
return new UserImportResult(request.getUsersCount(), response);
228228
}
229229

230+
// TODO(micahstairs): Write unit tests for this method.
230231
ListTenantsResponse listTenants(int maxResults, String pageToken) throws FirebaseAuthException {
231232
ImmutableMap.Builder<String, Object> builder = ImmutableMap.<String, Object>builder()
232233
.put("maxResults", maxResults);

src/main/java/com/google/firebase/auth/ListTenantsPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public Iterable<Tenant> iterateAll() {
113113
}
114114

115115
/**
116-
* Returns an {@code Iterable} over the users in this page.
116+
* Returns an {@code Iterable} over the tenants in this page.
117117
*
118118
* @return a {@code Iterable<Tenant>} instance.
119119
*/

src/main/java/com/google/firebase/auth/Tenant.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ public static Builder newBuilder() {
8989
}
9090

9191
/**
92-
* Builder class used to construct a create request.
93-
*/
92+
* Builder class used to construct a create request.
93+
*/
9494
@AutoValue.Builder
9595
abstract static class Builder {
9696
public abstract Builder setDisplayName(String displayName);
@@ -138,8 +138,8 @@ public static Builder newBuilder() {
138138
}
139139

140140
/**
141-
* Builder class used to construct a update request.
142-
*/
141+
* Builder class used to construct a update request.
142+
*/
143143
@AutoValue.Builder
144144
abstract static class Builder {
145145
public abstract Builder setDisplayName(String displayName);

src/test/java/com/google/firebase/auth/ListTenantsPageTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 202 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)