Skip to content

Commit 08af4ed

Browse files
authored
Fix up Crashlytics javadocs (firebase#1173)
1 parent 27311db commit 08af4ed

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public void setUserId(@NonNull String identifier) {
162162
* <p>The value of any key at the time of a fatal or non-fatal event is associated with that
163163
* event.
164164
*
165-
* <p>Keys and associated values are be visible in the session view on the Firebase Crashlytics
165+
* <p>Keys and associated values are visible in the session view on the Firebase Crashlytics
166166
* console.
167167
*
168168
* <p>Accepts a maximum of 64 key/value pairs. New keys beyond that limit are ignored. Keys or
@@ -183,7 +183,7 @@ public void setCustomKey(@NonNull String key, boolean value) {
183183
* <p>The value of any key at the time of a fatal or non-fatal event is associated with that
184184
* event.
185185
*
186-
* <p>Keys and associated values are be visible in the session view on the Firebase Crashlytics
186+
* <p>Keys and associated values are visible in the session view on the Firebase Crashlytics
187187
* console.
188188
*
189189
* <p>Accepts a maximum of 64 key/value pairs. New keys beyond that limit are ignored. Keys or
@@ -204,7 +204,7 @@ public void setCustomKey(@NonNull String key, double value) {
204204
* <p>The value of any key at the time of a fatal or non-fatal event is associated with that
205205
* event.
206206
*
207-
* <p>Keys and associated values are be visible in the session view on the Firebase Crashlytics
207+
* <p>Keys and associated values are visible in the session view on the Firebase Crashlytics
208208
* console.
209209
*
210210
* <p>Accepts a maximum of 64 key/value pairs. New keys beyond that limit are ignored. Keys or
@@ -225,7 +225,7 @@ public void setCustomKey(@NonNull String key, float value) {
225225
* <p>The value of any key at the time of a fatal or non-fatal event is associated with that
226226
* event.
227227
*
228-
* <p>Keys and associated values are be visible in the session view on the Firebase Crashlytics
228+
* <p>Keys and associated values are visible in the session view on the Firebase Crashlytics
229229
* console.
230230
*
231231
* <p>Accepts a maximum of 64 key/value pairs. New keys beyond that limit are ignored. Keys or
@@ -246,7 +246,7 @@ public void setCustomKey(@NonNull String key, int value) {
246246
* <p>The value of any key at the time of a fatal or non-fatal event will be associated with that
247247
* event.
248248
*
249-
* <p>Keys and associated values will be visible in the session view on the Firebase Crashlytics
249+
* <p>Keys and associated values are visible in the session view on the Firebase Crashlytics
250250
* console.
251251
*
252252
* <p>A maximum of 64 key/value pairs can be written, and new keys added beyond that limit will be
@@ -267,7 +267,7 @@ public void setCustomKey(@NonNull String key, long value) {
267267
* <p>The value of any key at the time of a fatal or non-fatal event is associated with that
268268
* event.
269269
*
270-
* <p>Keys and associated values are be visible in the session view on the Firebase Crashlytics
270+
* <p>Keys and associated values are visible in the session view on the Firebase Crashlytics
271271
* console.
272272
*
273273
* <p>Accepts a maximum of 64 key/value pairs. New keys beyond that limit are ignored. Keys or
@@ -305,7 +305,7 @@ public void sendUnsentReports() {
305305

306306
/**
307307
* If automatic data collection is disabled, this method queues up all the reports on a device for
308-
* deleting. Otherwise, this method is a no-op.
308+
* deletion. Otherwise, this method is a no-op.
309309
*/
310310
public void deleteUnsentReports() {
311311
core.deleteUnsentReports();
@@ -329,10 +329,10 @@ public boolean didCrashOnPreviousExecution() {
329329
* as well as any Firebase-wide automatic data collection settings.
330330
*
331331
* <p>If automatic data collection is disabled for Crashlytics, crash reports are stored on the
332-
* device. To check for reports, use the checkForUnsentReports method. Use sendUnsentReports to
333-
* uploading existing reports even when automatic data collection is disabled. Use
334-
* deleteUnsentReports to delete any reports stored on the device without sending them to
335-
* Crashlytics
332+
* device. To check for reports, use the {@link #checkForUnsentReports()} method. Use {@link
333+
* #sendUnsentReports()} to upload existing reports even when automatic data collection is
334+
* disabled. Use {@link #deleteUnsentReports()} to delete any reports stored on the device without
335+
* sending them to Crashlytics.
336336
*
337337
* @param enabled whether to enable automatic data collection.
338338
*/

0 commit comments

Comments
 (0)