Skip to content

Commit 11cb1e5

Browse files
authored
Apply suggestions from code review
1 parent dc6f436 commit 11cb1e5

29 files changed

+29
-29
lines changed

source/fundamentals/crud/read-operations/distinct.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Retrieve Distinct Values
1010

1111
.. meta::
1212
:keywords: read operation, code example
13-
:description: Learn how to retrieve distinct values for a specified field in a collection using the `Distinct()` method in Go.
13+
:description: Learn how to retrieve distinct values for a specified field in a collection using the Distinct() method in Go.
1414

1515
.. contents:: On this page
1616
:local:

source/fundamentals/crud/read-operations/retrieve.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Retrieve Data
55
==============
66

77
.. meta::
8-
:description: Learn how to retrieve data from MongoDB collections using read operations, including find and aggregation methods, with examples in Go.
8+
:description: Learn how to retrieve data by using MongoDB Go Driver read operations, including find and aggregation methods.
99

1010
.. contents:: On this page
1111
:local:

source/fundamentals/crud/read-operations/skip.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Skip Returned Results
55
=====================
66

77
.. meta::
8-
:description: Learn how to skip a specified number of results in MongoDB read operations using the `SetSkip()` method or the `$skip` stage in aggregation pipelines.
8+
:description: Learn how to skip a specified number of results in MongoDB read operations using the setSkip() method or the $skip stage in aggregation pipelines.
99

1010
.. default-domain:: mongodb
1111

source/fundamentals/crud/read-operations/sort.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Sort Results
55
============
66

77
.. meta::
8-
:description: Learn how to sort query results in Go using ascending or descending order, handle ties, and apply sorting in aggregation pipelines.
8+
:description: Learn how to sort query results, handle ties, and apply sorting in aggregation pipelines with the MongoDB Go Driver.
99

1010
.. default-domain:: mongodb
1111

source/fundamentals/crud/read-operations/text.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Search Text
55
===========
66

77
.. meta::
8-
:description: Learn how to perform text searches in MongoDB using Go, including creating text indexes and sorting results by relevance.
8+
:description: Learn how to perform text searches with the MongoDB Go Driver, including creating text indexes and sorting results by relevance.
99

1010
.. contents:: On this page
1111
:local:

source/fundamentals/crud/write-operations/bulk.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Bulk Operations
55
===============
66

77
.. meta::
8-
:description: Learn to perform bulk write operations in Go, including inserts, updates, replacements, and deletions, using the BulkWrite method.
8+
:description: Learn to perform bulk write operations with the MongoDB Go Driver, including inserts, updates, replacements, and deletions, using the bulkWrite() method.
99

1010
.. default-domain:: mongodb
1111

source/fundamentals/crud/write-operations/delete.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Delete Documents
55
================
66

77
.. meta::
8-
:description: Learn how to remove documents from MongoDB collections using delete operations like `DeleteOne()` and `DeleteMany()`, with examples and options.
8+
:description: Learn how to remove documents from collections with the deleteOne() and deleteMany() methods in the MongoDB Go Driver, with examples and options.
99

1010
.. contents:: On this page
1111
:local:

source/fundamentals/crud/write-operations/embedded-arrays.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Update Arrays in a Document
55
===========================
66

77
.. meta::
8-
:description: Learn how to update array elements in MongoDB documents using positional operators and the `FindOneAndUpdate()` method in Go.
8+
:description: Learn how to update array elements in documents using positional operators and the findOneAndUpdate() method in the MongoDB Go Driver.
99

1010
.. contents:: On this page
1111
:local:

source/fundamentals/crud/write-operations/insert.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Insert a Document
1010

1111
.. meta::
1212
:keywords: code example, write operation, add data
13-
:description: Learn how to insert documents into a MongoDB collection using the `InsertOne()` and `InsertMany()` methods, with options to modify their behavior.
13+
:description: Learn how to insert documents into a MongoDB collection using the insertOne() and insertMany() methods, with options to modify their behavior.
1414

1515
.. contents:: On this page
1616
:local:

source/fundamentals/crud/write-operations/modify.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Modify Documents
1010

1111
.. meta::
1212
:keywords: code example, write operation, change data
13-
:description: Learn how to modify MongoDB documents using update and replace operations, including methods like `UpdateOne()`, `UpdateMany()`, and `ReplaceOne()`.
13+
:description: Learn how to modify MongoDB documents using update and replace operations, including methods like updateOne(), updateMany(), and replaceOne().
1414

1515
.. contents:: On this page
1616
:local:

0 commit comments

Comments
 (0)