diff --git a/source/reference/function/with_transaction.txt b/source/reference/function/with_transaction.txt index 57742ab0..2aa42730 100644 --- a/source/reference/function/with_transaction.txt +++ b/source/reference/function/with_transaction.txt @@ -91,4 +91,4 @@ See Also - :php:`MongoDB\Driver\Session::startTransaction ` - :php:`MongoDB\Driver\Session::commitTransaction ` - :manual:`Transactions: Drivers API ` documentation in the MongoDB manual -- `Convenient API for Transactions `_ specification +- `Convenient API for Transactions `_ specification diff --git a/source/reference/method/MongoDBClient-listDatabaseNames.txt b/source/reference/method/MongoDBClient-listDatabaseNames.txt index afbaafe1..4f12d628 100644 --- a/source/reference/method/MongoDBClient-listDatabaseNames.txt +++ b/source/reference/method/MongoDBClient-listDatabaseNames.txt @@ -115,5 +115,5 @@ See Also - :manual:`listDatabases ` command reference in the MongoDB manual - `Enumerating Databases - `_ + `_ specification diff --git a/source/reference/method/MongoDBClient-listDatabases.txt b/source/reference/method/MongoDBClient-listDatabases.txt index b84a9e4a..718e3717 100644 --- a/source/reference/method/MongoDBClient-listDatabases.txt +++ b/source/reference/method/MongoDBClient-listDatabases.txt @@ -129,5 +129,5 @@ See Also - :manual:`listDatabases ` command reference in the MongoDB manual - `Enumerating Databases - `_ + `_ specification diff --git a/source/reference/method/MongoDBClient__construct.txt b/source/reference/method/MongoDBClient__construct.txt index 773dbd22..34b9fd45 100644 --- a/source/reference/method/MongoDBClient__construct.txt +++ b/source/reference/method/MongoDBClient__construct.txt @@ -55,7 +55,7 @@ Parameters ``$driverOptions`` : array Specifies options specific to the PHP driver. In addition to driver options supported by the :php:`extension `, the library - additionally supports specifying a default + additionally supports specifying a default :php:`type map ` to apply to the cursors it creates. @@ -218,7 +218,7 @@ Behavior A :php:`MongoDB\Driver\Manager ` is constructed internally. Per the `Server Discovery and Monitoring -`_ +`_ specification, :php:`MongoDB\Driver\Manager::__construct() ` performs no I/O. Connections will be initialized on demand, when the first operation is executed. @@ -333,5 +333,5 @@ See Also - :manual:`Connection String URI Format ` in the MongoDB manual - `Server Discovery and Monitoring - `_ + `_ specification diff --git a/source/reference/method/MongoDBCollection-listIndexes.txt b/source/reference/method/MongoDBCollection-listIndexes.txt index 00c5d65e..7281cf1e 100644 --- a/source/reference/method/MongoDBCollection-listIndexes.txt +++ b/source/reference/method/MongoDBCollection-listIndexes.txt @@ -131,6 +131,6 @@ See Also - :manual:`listIndexes ` command reference in the MongoDB manual - :manual:`Index documentation ` in the MongoDB manual -- `Enumerating Collections - `_ +- `Index Management + `_ specification diff --git a/source/reference/method/MongoDBDatabase-listCollectionNames.txt b/source/reference/method/MongoDBDatabase-listCollectionNames.txt index 00d4ce69..b13bb84e 100644 --- a/source/reference/method/MongoDBDatabase-listCollectionNames.txt +++ b/source/reference/method/MongoDBDatabase-listCollectionNames.txt @@ -137,5 +137,5 @@ See Also - :manual:`listCollections ` command reference in the MongoDB manual - `Enumerating Collections - `_ + `_ specification diff --git a/source/reference/method/MongoDBDatabase-listCollections.txt b/source/reference/method/MongoDBDatabase-listCollections.txt index d1f4041b..cad71e2c 100644 --- a/source/reference/method/MongoDBDatabase-listCollections.txt +++ b/source/reference/method/MongoDBDatabase-listCollections.txt @@ -162,5 +162,5 @@ See Also - :manual:`listCollections ` command reference in the MongoDB manual - `Enumerating Collections - `_ + `_ specification diff --git a/source/tutorial/server-selection.txt b/source/tutorial/server-selection.txt index b953c70d..0ef65206 100644 --- a/source/tutorial/server-selection.txt +++ b/source/tutorial/server-selection.txt @@ -89,8 +89,8 @@ quite a lot going on behind the scenes! Interested readers can find this process discussed in greater detail in the following documents: - `Single-threaded Mode `_ in the libmongoc documentation -- `Server Discovery and Monitoring `_ specification -- `Server Selection `_ specification +- `Server Discovery and Monitoring `_ specification +- `Server Selection `_ specification Connection String Options ------------------------- @@ -107,7 +107,7 @@ This defaults to 10 seconds for single-threaded drivers such as PHP. When a server times out during monitoring, it will not be re-checked until at least five seconds -(`cooldownMS `_) +(`cooldownMS `_) have elapsed. This timeout is intended to avoid having single-threaded drivers block for ``connectTimeoutMS`` on *each* subsequent scan after an error.