Skip to content

Commit 9958b84

Browse files
chemelnucfinpongad
authored andcommitted
firestore: removed extra 'a' in ArraySortedMap findkey documentation (#3032)
1 parent bc07a35 commit 9958b84

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

google-cloud-firestore/src/main/java/com/google/cloud/firestore/collection/ArraySortedMap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ private static <T> T[] replaceInArray(T[] arr, int pos, T value) {
274274

275275
/**
276276
* This does a linear scan which is simpler than a binary search. For a small collection size this
277-
* still should be as fast a as binary search.
277+
* still should be as fast as binary search.
278278
*/
279279
private int findKeyOrInsertPosition(K key) {
280280
int newPos = 0;
@@ -286,7 +286,7 @@ private int findKeyOrInsertPosition(K key) {
286286

287287
/**
288288
* This does a linear scan which is simpler than a binary search. For a small collection size this
289-
* still should be as fast a as binary search.
289+
* still should be as fast as binary search.
290290
*/
291291
private int findKey(K key) {
292292
int i = 0;

0 commit comments

Comments
 (0)