Skip to content

Commit edd04c7

Browse files
committed
Regenerate snippets
1 parent 97c3d88 commit edd04c7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

snippets/firestore-next/test-firestore/example_filters.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// To make edits to the snippets in this file, please edit the source
55

66
// [START example_filters_modular]
7-
const q1 = query(citiesRef, where("state", "==", "CA"));
8-
const q2 = query(citiesRef, where("population", "<", 100000));
9-
const q3 = query(citiesRef, where("name", ">=", "San Francisco"));
7+
const stateQuery = query(citiesRef, where("state", "==", "CA"));
8+
const populationQuery = query(citiesRef, where("population", "<", 100000));
9+
const nameQuery = query(citiesRef, where("name", ">=", "San Francisco"));
1010
// [END example_filters_modular]

snippets/firestore-next/test-firestore/simple_query_not_equal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
// To make edits to the snippets in this file, please edit the source
55

66
// [START simple_query_not_equal_modular]
7-
const q4 = query(citiesRef, where("capital", "!=", false));
7+
const notCapitalQuery = query(citiesRef, where("capital", "!=", false));
88
// [END simple_query_not_equal_modular]

0 commit comments

Comments
 (0)