Skip to content

Commit bb4653d

Browse files
committed
yarn format
1 parent b217f4a commit bb4653d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/firestore/src/util/misc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export function compareUtf8Strings(left: string, right: string): number {
110110
// direct comparison of the UTF-16 code units, as would be done in case 1, would erroneously
111111
// produce the _opposite_ ordering, because 0xFFFD is _greater than_ 0xD83D. As it turns out,
112112
// this relative ordering holds for all comparisons of UTF-16 code points requiring a surrogate
113-
// pair with those that do not.
113+
// pair with those that do not.
114114
const length = Math.min(left.length, right.length);
115115
for (let i = 0; i < length; i++) {
116116
const leftChar = left.charAt(i);

0 commit comments

Comments
 (0)