-
Notifications
You must be signed in to change notification settings - Fork 43
DOCSP-33951: atomic typos fy2024-q4 #487
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
751afd7
DOCSP-33951: atomic typos fy2024-q4
rustagir a036791
vale fixes
rustagir c00dd03
vale fixes
rustagir b3a029c
NR PR fixes 1
rustagir b32ffca
vale fixes
rustagir 5cc5042
small fixes
rustagir 5d6d7d0
small fixes
rustagir File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -58,7 +58,7 @@ principal name. | |||||
The following code snippets show how to specify the authentication mechanism, | ||||||
using the following placeholders: | ||||||
|
||||||
* ``username`` - your URL-encoded principal name, e.g. "username%40REALM.ME" | ||||||
* ``username`` - your URL-encoded principal name, for example "username%40REALM.ME" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. S:
Suggested change
|
||||||
* ``hostname`` - network address of your MongoDB deployment, accessible by your client | ||||||
* ``port`` - port number of your MongoDB deployment | ||||||
|
||||||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -27,10 +27,10 @@ You can specify one or more of the following write operations in | |||||
The ``bulkWrite()`` method accepts the following parameters: | ||||||
|
||||||
- A ``List`` of objects that implement ``WriteModel``: the classes that | ||||||
implement ``WriteModel`` correspond to the aforementioned write | ||||||
operations. E.g. the ``InsertOneModel`` class wraps the ``insertOne`` write | ||||||
operation. See the links to the API documentation at the bottom of this page | ||||||
for more information on each class. | ||||||
implement ``WriteModel`` correspond to the preceding write | ||||||
operation methods. For example, the ``InsertOneModel`` class wraps the | ||||||
``insertOne`` write operation. See the links to the API documentation | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. S:
Suggested change
|
||||||
at the end of this page for more information about each class. | ||||||
|
||||||
- ``BulkWriteOptions``: *optional* object that specifies settings such as | ||||||
whether to ensure your MongoDB instance orders your write operations. | ||||||
|
@@ -43,14 +43,17 @@ The ``bulkWrite()`` method accepts the following parameters: | |||||
|
||||||
.. tip:: | ||||||
|
||||||
By default, MongoDB executes bulk write operations one-by-one in the | ||||||
specified order (i.e. serially). During an ordered bulk write, if | ||||||
an error occurs during the processing of an operation, MongoDB returns | ||||||
without processing the remaining operations in the list. In contrast, | ||||||
when you set ``ordered`` to ``false``, MongoDB continues to process remaining | ||||||
write operations in the list in the event of an error. Unordered operations | ||||||
are theoretically faster since MongoDB can execute them in parallel, but | ||||||
you should only use them if your writes do not depend on order. | ||||||
By default, MongoDB executes operations in a bulk write in the | ||||||
specified order. During an ordered bulk write, if | ||||||
an error occurs during the processing of an operation, MongoDB returns | ||||||
without processing the remaining operations in the list. | ||||||
|
||||||
In contrast, when you set the ``ordered`` option to ``false``, MongoDB | ||||||
continues to process the remaining write operations in the list even in the | ||||||
event of an error. Unordered operations are usually faster since | ||||||
MongoDB can execute them in parallel, but only use an | ||||||
unordered bulk write if the order of your write operations is not | ||||||
important. | ||||||
|
||||||
The ``bulkWrite()`` method returns a ``BulkWriteResult`` object that | ||||||
contains information about the write operation results including the number | ||||||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S: