Skip to content

Commit 7bcedca

Browse files
authored
Update Javadoc for FirebaseCrashlytics.java (#2492)
1 parent e5c93ae commit 7bcedca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/CustomKeysAndValues.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/**
2222
* Helper class which handles the storage and conversion to strings of key/value pairs with
23-
* heterogenous value types.
23+
* heterogeneous value types.
2424
*/
2525
public class CustomKeysAndValues {
2626

firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/FirebaseCrashlytics.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ public void setCustomKey(@NonNull String key, @NonNull String value) {
444444

445445
/**
446446
* Sets multiple custom keys and values that are associated with subsequent fatal and non-fatal
447-
* reports. This method is intended as an alternative to setCustomKey in order to reduce the
447+
* reports. This method is intended as an alternative to `setCustomKey` in order to reduce the
448448
* computational load of writing out multiple key/value pairs at the same time.
449449
*
450450
* <p>Multiple calls to this method with the same key update the value for that key.
@@ -457,7 +457,7 @@ public void setCustomKey(@NonNull String key, @NonNull String value) {
457457
*
458458
* <p>Accepts a maximum of 64 key/value pairs. If calling this method results in the number of
459459
* custom keys exceeding this limit, only some of the keys will be logged (however many are needed
460-
* to get to 64). Which are logged versus dropped is unpredictable as there is no intrinsic
460+
* to get to 64). Which keys are logged versus dropped is unpredictable as there is no intrinsic
461461
* sorting of keys. Keys or values that exceed 1024 characters are truncated.
462462
*
463463
* @param keysAndValues A dictionary of keys and the values to associate with each key

0 commit comments

Comments
 (0)