Skip to content

Commit 6e206e9

Browse files
committed
code comment fix
1 parent a589d71 commit 6e206e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/includes/usage-examples/code-snippets/distinct.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

source/includes/usage-examples/code-snippets/distinctBsonD.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)