Skip to content

Commit b58e788

Browse files
authored
Making minor changes to Javadoc text. (#1366)
Hope this is OK to merge without full test, but with Ankita's blessing.
1 parent 84ab316 commit b58e788

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

firebase-installations/src/main/java/com/google/firebase/installations/FirebaseInstallations.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@
4747
import java.util.concurrent.atomic.AtomicInteger;
4848

4949
/**
50-
* Entry point for Firebase Installations.
50+
* Entry point for Firebase installations.
5151
*
52-
* <p>Firebase Installations does
52+
* <p>The Firebase installations service:
5353
*
5454
* <ul>
55-
* <li>provide unique identifier for a Firebase installation
56-
* <li>provide auth token of a Firebase installation
57-
* <li>provide a API to GDPR-delete a Firebase installation
55+
* <li>provides a unique identifier for a Firebase installation
56+
* <li>provides an auth token for a Firebase installation
57+
* <li>provides a API to perform GDPR-compliant deletion of a Firebase installation.
5858
* </ul>
5959
*/
6060
public class FirebaseInstallations implements FirebaseInstallationsApi {
@@ -212,11 +212,11 @@ public Task<String> getId() {
212212

213213
/**
214214
* Returns a valid authentication token for the Firebase installation. Generates a new token if
215-
* one doesn't exist, is expired or about to expire.
215+
* one doesn't exist, is expired, or is about to expire.
216216
*
217-
* <p>Should only be called if the Firebase Installation is registered.
217+
* <p>Should only be called if the Firebase installation is registered.
218218
*
219-
* @param forceRefresh Options to get FIS Auth Token either by force refreshing or not.
219+
* @param forceRefresh Options to get an auth token either by force refreshing or not.
220220
*/
221221
@NonNull
222222
@Override
@@ -232,9 +232,9 @@ public Task<InstallationTokenResult> getToken(boolean forceRefresh) {
232232
}
233233

234234
/**
235-
* Call to delete this Firebase app installation from Firebase backend. This call would possibly
236-
* lead Firebase Notification, Firebase RemoteConfig, Firebase Predictions or Firebase In-App
237-
* Messaging not function properly.
235+
* Call to delete this Firebase app installation from the Firebase backend. This call may
236+
* cause Firebase Cloud Messaging, Firebase Remote Config, Firebase Predictions, or
237+
* Firebase In-App Messaging to not function properly.
238238
*/
239239
@NonNull
240240
@Override

0 commit comments

Comments
 (0)