File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
source/includes/usage-examples/code-snippets Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ func main() {
4848 }
4949 }()
5050
51- // Filter the collection for documents where the value of cuisine is "Tapas"
51+ // Filters the collection for documents where the value of cuisine is "Tapas"
5252 coll := client .Database ("sample_restaurants" ).Collection ("restaurants" )
5353 filter := RestaurantCuisineFilter {Cuisine : "Tapas" }
5454
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ func main() {
3333 }
3434 }()
3535
36- // Filter the collection for documents where the value of cuisine is "Tapas"
36+ // Filters the collection for documents where the value of cuisine is "Tapas"
3737 coll := client .Database ("sample_restaurants" ).Collection ("restaurants" )
3838 filter := bson.D {{"cuisine" , "Tapas" }}
3939
You can’t perform that action at this time.
0 commit comments