Skip to content

Commit 5dee861

Browse files
norareidyrustagir
authored andcommitted
DOCSP-31825: Update titles (#283)
* DOCSP-31825: updated page titles * build * build * fixing version range * fixing headers and typos * redirects typo (cherry picked from commit bc91936)
1 parent a4f21ba commit 5dee861

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

config/redirects

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ raw: ${prefix}/stable -> ${base}/current/
1010
[*-master]: ${prefix}/${version}/fundamentals/crud/read-operations/watch/ -> ${base}/${version}/fundamentals/crud/read-operations/changestream/
1111
[*-master]: ${prefix}/${version}/usage-examples/watch/ -> ${base}/${version}/usage-examples/changestream/
1212
[*-master]: ${prefix}/${version}/fundamentals/crud/run-command/ -> ${base}/${version}/fundamentals/run-command/
13-
[*-v1.11]: ${prefix}/${version}/fundamentals/logging/ -> ${base}/${version}/
13+
[*-1.11]: ${prefix}/${version}/fundamentals/logging/ -> ${base}/${version}/
14+
[*-master]: ${prefix}/${version}/fundamentals/crud/write-operations/change-a-document/ -> ${base}/${version}/fundamentals/crud/write-operations/modify/

source/fundamentals/crud/write-operations.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Write Operations
1818

1919
/fundamentals/crud/write-operations/insert
2020
/fundamentals/crud/write-operations/delete
21-
/fundamentals/crud/write-operations/change-a-document
21+
/fundamentals/crud/write-operations/modify
2222
/fundamentals/crud/write-operations/embedded-arrays
2323
/fundamentals/crud/write-operations/upsert
2424
/fundamentals/crud/write-operations/bulk

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
.. _golang-delete-guide:
22

3-
=================
4-
Delete a Document
5-
=================
6-
7-
.. default-domain:: mongodb
3+
================
4+
Delete Documents
5+
================
86

97
.. contents:: On this page
108
:local:

source/fundamentals/crud/write-operations/change-a-document.txt renamed to source/fundamentals/crud/write-operations/modify.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _golang-change-document:
22

3-
=================
4-
Change a Document
5-
=================
3+
================
4+
Modify Documents
5+
================
66

77
.. contents:: On this page
88
:local:
@@ -13,15 +13,15 @@ Change a Document
1313
Overview
1414
--------
1515

16-
In this guide, you can learn how to change documents in MongoDB using
16+
In this guide, you can learn how to modify documents in MongoDB using
1717
**update** and **replace** operations.
1818

1919
Update operations change the fields that you specify while leaving other
2020
fields and values unchanged. Replace operations remove all existing fields
2121
except for ``_id`` in a document and substitute the deleted fields with
2222
the new fields and values you specify.
2323

24-
In MongoDB, all methods to change documents follow the same pattern:
24+
In MongoDB, all methods to modify documents follow the same pattern:
2525

2626
.. figure:: /includes/figures/change_diagram.png
2727
:alt: Change method signature
@@ -32,11 +32,11 @@ In MongoDB, all methods to change documents follow the same pattern:
3232

3333
The pattern expects you to:
3434

35-
* Specify a query filter to match one or more documents to change.
35+
* Specify a query filter to match one or more documents to modify.
3636
* Specify the field and value changes.
3737
* Specify options to modify behavior, if needed.
3838

39-
The driver provides the following methods to change documents:
39+
The driver provides the following methods to modify documents:
4040

4141
* ``UpdateByID()``
4242
* ``UpdateOne()``

0 commit comments

Comments
 (0)