Skip to content

Commit 876a80a

Browse files
committed
Grammar
1 parent e6ced1d commit 876a80a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Firestore/core/src/index/firestore_index_value_writer.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ void WriteIndexValueAux(const google_firestore_v1_Value& index_value,
143143
}
144144
case google_firestore_v1_Value_integer_value_tag: {
145145
WriteValueTypeLabel(encoder, IndexType::kNumber);
146-
// Write as double instead integer so 0 and 0.0 are considered the same.
146+
// Write as double instead of integer so 0 and 0.0 are considered the
147+
// same.
147148
encoder->WriteDouble(index_value.integer_value);
148149
break;
149150
}

0 commit comments

Comments
 (0)