Skip to content

Commit 62bc102

Browse files
committed
edits
1 parent 5b9c3a9 commit 62bc102

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

source/integrations/spring-data-integration.txt

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ repository-style data access layers.
3838
The Spring Data BulkOperations Interface
3939
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4040

41-
BulkOperations is an Spring Framework interface that contains a list of write
41+
BulkOperations is an Spring Framework Data interface that contains a list of write
4242
operations that can be applied to your database. They can be any combination of
43-
the following {+driver-short+} operations:
43+
the following operations which map to similar {+driver-short+} operations:
4444

4545
- ``insert``
4646
- ``updateOne``
@@ -55,10 +55,13 @@ sequentially and if an error is detected, will return with an error code.
5555
Unordered operations will be applied in parallel, which means they can be
5656
faster. However, you must check if there were errors during the operations.
5757

58-
For more information, see the `BulkOperations
59-
<https://www.mongodb.com/docs/manual/core/bulk-write-operations/>`__ page of the
60-
Spring Framework API documentation and the :manual:`Bulk Write Operations
61-
</core/bulk-write-operations/>` page of the MongoDB server manual.
58+
For more information about bulk operations, see the following resources:
59+
60+
- `BulkOperations
61+
<https://docs.spring.io/spring-data/mongodb/docs/current/api/org/springframework/data/mongodb/core/BulkOperations.html>`__
62+
in the Spring Framework API documentation
63+
- :ref:`Bulk Write Operations <java-fundamentals-bulkwrite>` in this guide
64+
- :manual:`Bulk Write Operations </core/bulk-write-operations/>` in the MongoDB server manual.
6265

6366
Tutorial
6467
--------
@@ -69,7 +72,7 @@ You can find the completed sample app for this tutorial in the
6972

7073
.. note:: Imports Not specified
7174

72-
The import statements required for the classes in the tutorial have not been included. See the GitHub repository for complete files.
75+
The import statements required for the classes in the tutorial have not been included. See the :github:`GitHub repository</jorge-imperial/SpringDataMongoBulkInsert>` for complete files.
7376

7477
Prerequisites
7578
~~~~~~~~~~~~~

0 commit comments

Comments
 (0)