Skip to content

Commit 2022fb2

Browse files
rustagirrachel-mack
authored andcommitted
DOCSP-49699: compound ops page typo fix (mongodb#496)
* DOCSP-49699: compound ops page typo fix * more fixes I noticed * small fix * small fix * vale
1 parent 0ba7384 commit 2022fb2

File tree

19 files changed

+36
-59
lines changed

19 files changed

+36
-59
lines changed

source/archive-reference-files/fundamentals/crud/read-operations/skip.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ Skip Returned Results
55
.. meta::
66
: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.
77

8-
.. default-domain:: mongodb
9-
108
.. contents:: On this page
119
:local:
1210
:backlinks: none

source/archive-reference-files/fundamentals/crud/read-operations/sort.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ Sort Results
55
.. meta::
66
:description: Learn how to sort query results, handle ties, and apply sorting in aggregation pipelines with the MongoDB Go Driver.
77

8-
.. default-domain:: mongodb
9-
108
.. contents:: On this page
119
:local:
1210
:backlinks: none

source/archive-reference-files/usage-examples/command.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ Run a Command Example
66
.. meta::
77
:description: Learn how to execute commands on a MongoDB server using the runCommand() method in Go, with an example retrieving database statistics.
88

9-
.. default-domain:: mongodb
10-
119
You can run commands directly on your MongoDB server by using the
1210
``RunCommand()`` method.
1311

source/archive-reference-files/usage-examples/deleteMany.txt

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

77
.. meta::
8-
:description: Learn how to delete multiple documents from a collection using the deleteMany() method in the MongoDB Go Driver.
9-
10-
.. default-domain:: mongodb
8+
:description: Learn how to delete multiple documents from a collection using the DeleteMany() method in the MongoDB Go Driver.
119

1210
You can delete multiple documents in a collection by using the
1311
``DeleteMany()`` method.

source/archive-reference-files/usage-examples/deleteOne.txt

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

77
.. meta::
8-
:description: Learn how to delete a document from a collection using the deleteOne() method in the MongoDB Go Driver.
8+
:description: Learn how to delete a document from a collection using the DeleteOne() method in the MongoDB Go Driver.
99

1010
You can delete a document in a collection by using the ``DeleteOne()``
1111
method.

source/archive-reference-files/usage-examples/findOne.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ Find a Document
44
===============
55

66
.. meta::
7-
:description: Retrieve a single document from a collection using the findOne() method in the MongoDB Go Driver.
8-
9-
.. default-domain:: mongodb
7+
:description: Retrieve a single document from a collection using the FindOne() method in the MongoDB Go Driver.
108

119
You can retrieve a single document from a collection by using the
1210
``FindOne()`` method.

source/archive-reference-files/usage-examples/insertMany.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ Insert Multiple Documents
55
=========================
66

77
.. meta::
8-
:description: Learn how to insert multiple documents into a collection using the insertMany() method in the MongoDB Go Driver.
9-
10-
.. default-domain:: mongodb
8+
:description: Learn how to insert multiple documents into a collection using the InsertMany() method in the MongoDB Go Driver.
119

1210
You can insert multiple documents into a collection by using the ``InsertMany()``
1311
method.

source/archive-reference-files/usage-examples/insertOne.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ Insert a Document Example
55
=========================
66

77
.. meta::
8-
:description: Learn how to insert a document into a collection using the insertOne() method in the MongoDB Go Driver.
9-
10-
.. default-domain:: mongodb
8+
:description: Learn how to insert a document into a collection using the InsertOne() method in the MongoDB Go Driver.
119

1210
You can insert a document into a collection by using the ``InsertOne()``
1311
method.

source/archive-reference-files/usage-examples/replaceOne.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ Replace a Document
55
==================
66

77
.. meta::
8-
:description: Learn how to replace a document in a MongoDB collection using the replaceOne() method with the MongoDB Go Driver.
9-
10-
.. default-domain:: mongodb
8+
:description: Learn how to replace a document in a MongoDB collection using the ReplaceOne() method with the MongoDB Go Driver.
119

1210
You can replace a document in a collection by using the ``ReplaceOne()``
1311
method.

source/archive-reference-files/usage-examples/updateMany.txt

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

77
.. meta::
8-
:description: Learn how to update multiple documents in a collection using the updateMany() method in the MongoDB Go Driver.
8+
:description: Learn how to update multiple documents in a collection using the UpdateMany() method in the MongoDB Go Driver.
99

1010
You can update multiple documents in a collection by using the ``UpdateMany()``
1111
method.

0 commit comments

Comments
 (0)