Skip to content

Commit 73bd978

Browse files
committed
small fixes - NR PR comments
1 parent 41bafd1 commit 73bd978

8 files changed

+10
-10
lines changed

source/reference/class/MongoDBModelCollectionInfo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Definition
88
.. phpclass:: MongoDB\Model\CollectionInfo
99

1010
This class models information about a collection. Instances of this class are
11-
returned in an `Iterator <{+php-manual}/class.iterator.php>`__
11+
stored in an :php:`Iterator <manual/en/class.iterator.php>`
1212
returned by :phpmethod:`MongoDB\Database::listCollections()`.
1313

1414
.. versionchanged:: 1.4

source/reference/class/MongoDBModelDatabaseInfo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Definition
88
.. phpclass:: MongoDB\Model\DatabaseInfo
99

1010
This class models information about a database. Instances of this class are
11-
returned in an `Iterator <{+php-manual}/class.iterator.php>`__
11+
stored in an :php:`Iterator <manual/en/class.iterator.php>`
1212
returned by :phpmethod:`MongoDB\Client::listDatabases()`.
1313

1414
.. versionchanged:: 1.4

source/reference/class/MongoDBModelIndexInfo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Definition
88
.. phpclass:: MongoDB\Model\IndexInfo
99

1010
This class models information about an index. Instances of this class are
11-
returned in an `Iterator <{+php-manual}/class.iterator.php>`__
11+
stored in an :php:`Iterator <manual/en/class.iterator.php>`
1212
returned by :phpmethod:`MongoDB\Collection::listIndexes()`.
1313

1414
This class implements PHP's :php:`ArrayAccess <arrayaccess>` interface. This

source/reference/method/MongoDBClient-listDatabaseNames.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ Parameters
7777
Return Values
7878
-------------
7979

80-
An :php:`Iterator <class.iterator.php>`, which provides the name of each
81-
database on the server.
80+
An :php:`Iterator <manual/en/class.iterator.php>`, which provides the
81+
name of each database on the server.
8282

8383
Errors/Exceptions
8484
-----------------

source/reference/method/MongoDBClient-listDatabases.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Parameters
7575
Return Values
7676
-------------
7777

78-
An `Iterator <{+php-manual}/class.iterator.php>`__
78+
An :php:`Iterator <manual/en/class.iterator.php>`
7979
instance, which contains a :phpclass:`MongoDB\Model\DatabaseInfo` object
8080
for each database on the server.
8181

source/reference/method/MongoDBCollection-listIndexes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Parameters
5454
Return Values
5555
-------------
5656

57-
An `Iterator <{+php-manual}/class.iterator.php>`__
57+
An :php:`Iterator <manual/en/class.iterator.php>`
5858
instance, which contains a :phpclass:`MongoDB\Model\IndexInfo` object
5959
for each index for the collection.
6060

source/reference/method/MongoDBDatabase-listCollectionNames.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ Parameters
7474
Return Values
7575
-------------
7676

77-
An :php:`Iterator <class.iterator.php>`, which provides the name of each
78-
collection in the database.
77+
An :php:`Iterator <manual/en/class.iterator.php>`, which provides the
78+
name of each collection in the database.
7979

8080
Example
8181
-------

source/reference/method/MongoDBDatabase-listCollections.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Parameters
7272
Return Values
7373
-------------
7474

75-
An `Iterator <{+php-manual}/class.iterator.php>`__
75+
An :php:`Iterator <manual/en/class.iterator.php>`
7676
instance, which contains a :phpclass:`MongoDB\Model\CollectionInfo`
7777
object for each collection in the database.
7878

0 commit comments

Comments
 (0)