Skip to content

Commit 1e02f0e

Browse files
committed
Typo fixes
Change-Id: I882ce0d573d48f87a85d37b821ea6c60c23e675a
1 parent 00a4818 commit 1e02f0e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/src/main/java/com/firebase/uidemo/database/firestore/FirestorePagingActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ protected void onLoadingStateChanged(@NonNull LoadingState state) {
101101
break;
102102
case FINISHED:
103103
mProgressBar.setVisibility(View.GONE);
104-
showToast("Reached end of data set,");
104+
showToast("Reached end of data set.");
105105
break;
106106
case ERROR:
107107
showToast("An error occurred.");

firestore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Fear not, FirebaseUI does all of this for you automatically!
118118

119119
FirebaseUI offers two types of RecyclerView adapters for Cloud Firestore:
120120

121-
* `FirestoreRecyclerAdapter` — binds a `Query` to a `RecyclerView` and respond to all real-time
121+
* `FirestoreRecyclerAdapter` — binds a `Query` to a `RecyclerView` and responds to all real-time
122122
events included items being added, removed, moved, or changed. Best used with small result sets
123123
since all results are loaded at once.
124124
* `FirestorePagingAdapter` — binds a `Query` to a `RecyclerView` by loading data in pages. Best

firestore/src/main/java/com/firebase/ui/firestore/paging/FirestoreDataSource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public void onSuccess(QuerySnapshot snapshot) {
182182
mLoadingState.postValue(LoadingState.LOADED);
183183

184184
// Post the 'FINISHED' state when no more pages will be loaded. The data source
185-
// callbacks interpret and empty result list as a signal to cancel any future loads
185+
// callbacks interpret an empty result list as a signal to cancel any future loads.
186186
if (snapshot.getDocuments().isEmpty()) {
187187
mLoadingState.postValue(LoadingState.FINISHED);
188188
}

0 commit comments

Comments
 (0)