Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 21ceb41

Browse files
authored
Update DocSnippets.java (firebase#236)
update "Musuem" to "Museum"
1 parent 5e4c22c commit 21ceb41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

firestore/app/src/main/java/com/google/example/firestore/DocSnippets.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,7 @@ public void exampleDataCollectionGroup() {
960960

961961
Map<String, Object> lohData = new HashMap<>();
962962
lohData.put("name", "Legion of Honor");
963-
lohData.put("type", "musuem");
963+
lohData.put("type", "museum");
964964
citiesRef.document("SF").collection("landmarks").add(lohData);
965965

966966
Map<String, Object> gpData = new HashMap<>();
@@ -979,7 +979,7 @@ public void exampleDataCollectionGroup() {
979979
citiesRef.document("DC").collection("landmarks").add(lmData);
980980

981981
Map<String, Object> nasaData = new HashMap<>();
982-
nasaData.put("name", "National Air and Space Musuem");
982+
nasaData.put("name", "National Air and Space Museum");
983983
nasaData.put("type", "museum");
984984
citiesRef.document("DC").collection("landmarks").add(nasaData);
985985

@@ -989,7 +989,7 @@ public void exampleDataCollectionGroup() {
989989
citiesRef.document("TOK").collection("landmarks").add(upData);
990990

991991
Map<String, Object> nmData = new HashMap<>();
992-
nmData.put("name", "National Musuem of Nature and Science");
992+
nmData.put("name", "National Museum of Nature and Science");
993993
nmData.put("type", "museum");
994994
citiesRef.document("TOK").collection("landmarks").add(nmData);
995995

0 commit comments

Comments
 (0)