Skip to content

Commit 7288472

Browse files
committed
Use section heading for "See Also" links
1 parent c988443 commit 7288472

File tree

56 files changed

+307
-252
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+307
-252
lines changed

docs/reference/method/MongoDBClient-dropDatabase.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,9 @@ The output would then resemble::
6262
}
6363
}
6464

65-
.. seealso::
65+
See Also
66+
--------
6667

67-
- :phpmethod:`MongoDB\\Database::drop()`
68-
- :manual:`dropDatabase </reference/command/dropDatabase>` command reference
69-
in the MongoDB manual
68+
- :phpmethod:`MongoDB\\Database::drop()`
69+
- :manual:`dropDatabase </reference/command/dropDatabase>` command reference in
70+
the MongoDB manual

docs/reference/method/MongoDBClient-getManager.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ Definition
2727

2828
A :php:`MongoDB\\Driver\\Manager <class.mongodb-driver-manager>` object.
2929

30-
.. seealso::
30+
See Also
31+
--------
3132

32-
- :phpmethod:`MongoDB\\Collection::getManager()`
33-
- :phpmethod:`MongoDB\\Database::getManager()`
33+
- :phpmethod:`MongoDB\\Collection::getManager()`
34+
- :phpmethod:`MongoDB\\Database::getManager()`

docs/reference/method/MongoDBClient-listDatabases.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ The output would then resemble::
6969
bool(false)
7070
}
7171

72-
.. seealso::
72+
See Also
73+
--------
7374

74-
- :manual:`listDatabases </reference/command/listDatabases>` command
75-
reference in the MongoDB manual
75+
- :manual:`listDatabases </reference/command/listDatabases>` command reference
76+
in the MongoDB manual

docs/reference/method/MongoDBClient-selectCollection.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ with a custom read preference:
7070
]
7171
);
7272

73-
.. seealso::
73+
See Also
74+
--------
7475

75-
- :phpmethod:`MongoDB\\Collection::__construct()`
76-
- :phpmethod:`MongoDB\\Database::selectCollection()`
76+
- :phpmethod:`MongoDB\\Collection::__construct()`
77+
- :phpmethod:`MongoDB\\Database::selectCollection()`

docs/reference/method/MongoDBClient-selectDatabase.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ preference:
6969
]
7070
);
7171

72-
.. seealso::
72+
See Also
73+
--------
7374

74-
- :phpmethod:`MongoDB\\Client::__get()`
75-
- :phpmethod:`MongoDB\\Database::__construct()`
75+
- :phpmethod:`MongoDB\\Client::__get()`
76+
- :phpmethod:`MongoDB\\Database::__construct()`

docs/reference/method/MongoDBClient__construct.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ array, as was done in the legacy :php:`mongo extension <mongo>`.
6969
]
7070
);
7171

72-
.. seealso::
72+
See Also
73+
--------
7374

74-
- :php:`MongoDB\\Driver\\Manager::__construct()
75-
<mongodb-driver-manager.construct>`
75+
- :php:`MongoDB\\Driver\\Manager::__construct()
76+
<mongodb-driver-manager.construct>`

docs/reference/method/MongoDBClient__get.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ The following example selects the ``demo`` and ``another-app`` databases:
6060
$demo = $client->demo;
6161
$anotherApp = $client->{'another-app'};
6262

63-
.. seealso::
63+
See Also
64+
--------
6465

65-
- :phpmethod:`MongoDB\\Client::selectDatabase()`
66-
- :phpmethod:`MongoDB\\Database::__construct()`
67-
- :php:`Property Overloading <oop5.overloading>` in the PHP Manual
66+
- :phpmethod:`MongoDB\\Client::selectDatabase()`
67+
- :phpmethod:`MongoDB\\Database::__construct()`
68+
- :php:`Property Overloading <oop5.overloading>` in the PHP Manual

docs/reference/method/MongoDBCollection-aggregate.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,10 @@ value will be :php:`Traversable <traversable>`.
5959

6060
.. todo: add examples
6161

62-
.. seealso::
62+
See Also
63+
--------
6364

64-
- :manual:`aggregate </reference/command/aggregate>` command reference in the
65-
MongoDB manual
66-
- :manual:`Aggregation Pipeline </core/aggregation-pipeline>`
67-
documentation in the MongoDB Manual
65+
- :manual:`aggregate </reference/command/aggregate>` command reference in the
66+
MongoDB manual
67+
- :manual:`Aggregation Pipeline </core/aggregation-pipeline>` documentation in
68+
the MongoDB Manual

docs/reference/method/MongoDBCollection-bulkWrite.txt

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,14 @@ Definition
3737

3838
.. todo: add output and examples
3939

40-
.. seealso::
41-
42-
- :phpmethod:`MongoDB\\Collection::deleteMany()`
43-
- :phpmethod:`MongoDB\\Collection::deleteOne()`
44-
- :phpmethod:`MongoDB\\Collection::insertMany()`
45-
- :phpmethod:`MongoDB\\Collection::insertOne()`
46-
- :phpmethod:`MongoDB\\Collection::replaceOne()`
47-
- :phpmethod:`MongoDB\\Collection::updateMany()`
48-
- :phpmethod:`MongoDB\\Collection::updateOne()`
49-
- :doc:`/tutorial/crud`
40+
See Also
41+
--------
42+
43+
- :phpmethod:`MongoDB\\Collection::deleteMany()`
44+
- :phpmethod:`MongoDB\\Collection::deleteOne()`
45+
- :phpmethod:`MongoDB\\Collection::insertMany()`
46+
- :phpmethod:`MongoDB\\Collection::insertOne()`
47+
- :phpmethod:`MongoDB\\Collection::replaceOne()`
48+
- :phpmethod:`MongoDB\\Collection::updateMany()`
49+
- :phpmethod:`MongoDB\\Collection::updateOne()`
50+
- :doc:`/tutorial/crud`

docs/reference/method/MongoDBCollection-count.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ Definition
3535

3636
.. todo: add output and examples
3737

38-
.. seealso::
38+
See Also
39+
--------
3940

40-
- :manual:`count </reference/command/count>` command reference in the MongoDB
41-
manual
41+
- :manual:`count </reference/command/count>` command reference in the MongoDB
42+
manual

0 commit comments

Comments
 (0)