Skip to content

Commit a32e3b6

Browse files
committed
DOCSP-31823: updated page titles
(cherry picked from commit 815044e)
1 parent d4df68f commit a32e3b6

File tree

4 files changed

+12
-17
lines changed

4 files changed

+12
-17
lines changed

config/redirects

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ raw: ${prefix}/master -> ${base}/upcoming/
88
[*-master]: ${prefix}/${version}/fundamentals/versioned-api/ -> ${base}/${version}/fundamentals/stable-api/
99
[*-v4.6]: ${prefix}/${version}/fundamentals/crud/read-operations/change-streams/ -> ${base}/${version}/fundamentals/crud/read-operations/retrieve/
1010
[*-master]: ${prefix}/${version}/fundamentals/csfle/ -> ${base}/${version}/fundamentals/encrypt-fields/
11+
[*-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: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
Write Operations
33
================
44

5-
.. default-domain:: mongodb
6-
75
- :doc:`/fundamentals/crud/write-operations/insert`
86
- :doc:`/fundamentals/crud/write-operations/delete`
9-
- :doc:`/fundamentals/crud/write-operations/change-a-document`
7+
- :doc:`/fundamentals/crud/write-operations/modify`
108
- :doc:`/fundamentals/crud/write-operations/embedded-arrays`
119
- :doc:`/fundamentals/crud/write-operations/upsert`
1210
- :doc:`/fundamentals/crud/write-operations/bulk`
@@ -16,7 +14,7 @@ Write Operations
1614

1715
/fundamentals/crud/write-operations/insert
1816
/fundamentals/crud/write-operations/delete
19-
/fundamentals/crud/write-operations/change-a-document
17+
/fundamentals/crud/write-operations/modify
2018
/fundamentals/crud/write-operations/embedded-arrays
2119
/fundamentals/crud/write-operations/upsert
2220
/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
.. _java-fundamentals-delete:
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: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
.. _java-fundamentals-change-document:
22

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

97
.. contents:: On this page
108
:local:
@@ -15,7 +13,7 @@ Change a Document
1513
Overview
1614
--------
1715

18-
In this guide, you can learn how to change documents in a MongoDB
16+
In this guide, you can learn how to modify documents in a MongoDB
1917
collection using two distinct operation types:
2018

2119
- :ref:`Update <update-operation>`
@@ -44,7 +42,7 @@ current inventory:
4442
Update
4543
------
4644

47-
Update operations can change fields and values. They apply changes
45+
Update operations can modify fields and values. They apply changes
4846
specified in an update document to one or more documents that match your
4947
query filter.
5048

@@ -69,7 +67,7 @@ The ``updateOne()`` and ``updateMany()`` methods both have the following
6967
parameters:
7068

7169
- ``query`` specifies a query filter with the criteria to match documents to update in your collection
72-
- ``updateDocument`` specifies the fields and values to change in the matching document or documents. For this example, we use the :doc:`Updates builder </fundamentals/builders/updates>` to create the update document.
70+
- ``updateDocument`` specifies the fields and values to modify in the matching document or documents. For this example, we use the :doc:`Updates builder </fundamentals/builders/updates>` to create the update document.
7371

7472
You can create the ``updateDocument`` using an ``Updates`` builder as
7573
follows:

0 commit comments

Comments
 (0)