Skip to content

Commit 6625a97

Browse files
committed
DOCSP-31827: Update page titles (#123)
# Pull Request Info [PR Reviewing Guidelines](https://github.com/mongodb/docs-java/blob/master/REVIEWING.md) JIRA - https://jira.mongodb.org/browse/DOCSP-31827 Staging - https://docs-mongodbcom-staging.corp.mongodb.com/kotlin/docsworker-xlarge/DOCSP-31827-update-titles/fundamentals/crud/write-operations/modify/ https://docs-mongodbcom-staging.corp.mongodb.com/kotlin/docsworker-xlarge/DOCSP-31827-update-titles/fundamentals/crud/write-operations/delete/ Redirects - Redirect 301 /docs/drivers/kotlin/coroutine/v4.10/fundamentals/crud/write-operations/change-a-document/ https://www.mongodb.com/docs/drivers/kotlin/coroutine/v4.10/fundamentals/crud/write-operations/modify/ Redirect 301 /docs/drivers/kotlin/coroutine/master/fundamentals/crud/write-operations/change-a-document/ https://www.mongodb.com/docs/drivers/kotlin/coroutine/master/fundamentals/crud/write-operations/modify/ ## Self-Review Checklist - [x] Is this free of any warnings or errors in the RST? - [ ] Did you run a spell-check? - [ ] Did you run a grammar-check? - [x] Are all the links working? (cherry picked from commit 435397c)
1 parent 8582c13 commit 6625a97

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

config/redirects

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
define: prefix docs/drivers/kotlin/coroutine
22
define: base https://www.mongodb.com/${prefix}
3+
define: versions v4.10 master
34

45
raw: ${prefix}/ -> ${base}/current/
6+
7+
[*-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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Write Operations
44

55
- :doc:`/fundamentals/crud/write-operations/insert`
66
- :doc:`/fundamentals/crud/write-operations/delete`
7-
- :doc:`/fundamentals/crud/write-operations/change-a-document`
7+
- :doc:`/fundamentals/crud/write-operations/modify`
88
- :doc:`/fundamentals/crud/write-operations/embedded-arrays`
99
- :doc:`/fundamentals/crud/write-operations/upsert`
1010
- :doc:`/fundamentals/crud/write-operations/bulk`
@@ -14,7 +14,7 @@ Write Operations
1414

1515
/fundamentals/crud/write-operations/insert
1616
/fundamentals/crud/write-operations/delete
17-
/fundamentals/crud/write-operations/change-a-document
17+
/fundamentals/crud/write-operations/modify
1818
/fundamentals/crud/write-operations/embedded-arrays
1919
/fundamentals/crud/write-operations/upsert
2020
/fundamentals/crud/write-operations/bulk

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _kotlin-fundamentals-delete:
22

3-
=================
4-
Delete a Document
5-
=================
3+
================
4+
Delete Documents
5+
================
66

77
.. contents:: On this page
88
:local:

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

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

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

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

16-
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
1717
collection using two distinct operation types:
1818

1919
- :ref:`Update <update-operation>`
@@ -47,7 +47,7 @@ This data is modeled with the following Kotlin data class:
4747
Update
4848
------
4949

50-
Update operations can change fields and values. They apply changes
50+
Update operations can modify fields and values. They apply changes
5151
specified in an update document to one or more documents that match your
5252
query filter.
5353

@@ -72,7 +72,7 @@ The ``updateOne()`` and ``updateMany()`` methods both have the following
7272
parameters:
7373

7474
- ``query`` specifies a query filter with the criteria to match documents to update in your collection
75-
- ``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.
75+
- ``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.
7676

7777
You can create the ``updateDocument`` using an ``Updates`` builder as
7878
follows:

0 commit comments

Comments
 (0)