Skip to content

DOCSP-36627: More backslash fixes #1244

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 3 commits into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/reference/method/MongoDBCollection-explain.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Definition
Parameters
----------

``$explainable`` : :phpclass:`MongoDB\Operation\\Explainable`
``$explainable`` : :phpclass:`MongoDB\Operation\Explainable`
The command to explain.

``$options`` : array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Definition
(e.g. setting the value of a field to its current value), the matched
count may be greater than the value returned by
:phpmethod:`getModifiedCount()
<MongoDB\\UpdateResult::getModifiedCount()>`.
<MongoDB\UpdateResult::getModifiedCount()>`.

Return Values
-------------
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/tailable-cursor.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ preceding example to use the Iterator methods directly:
throw an exception, since all results on the cursor have been exhausted.

The purpose of this example is to demonstrate the functional equivalence between
``foreach`` and manual iteration with PHP's :php:`Iterator <iterator>`API.
``foreach`` and manual iteration with PHP's :php:`Iterator <iterator>` API.
For normal cursors, there is little reason to manually iterate results instead
of a concise ``foreach`` loop.

Expand Down
2 changes: 1 addition & 1 deletion docs/upgrade.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Type Classes

When upgrading from the legacy driver, type classes such as MongoId must be
replaced with classes in the
`MongoDB\BSON namespace <https://php.net/manual/en/book.bson.php>`_. The
`MongoDB\\BSON namespace <https://php.net/manual/en/book.bson.php>`_. The
new driver also introduces interfaces for its BSON types, which should be
preferred if applications need to type hint against BSON values.

Expand Down