Skip to content

Commit 40e8a2c

Browse files
committed
Remove trailing slash from manual links
1 parent 92617a5 commit 40e8a2c

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

docs/reference/class/MongoDBGridFSBucket.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ Definition
1515

1616
.. phpclass:: MongoDB\\GridFS\\Bucket
1717

18-
:manual:`GridFS </core/gridfs/>` is a specification for storing and
19-
retrieving files in MongoDB. GridFS uses two collections to store files. One
20-
collection stores the file chunks (e.g. ``fs.chunks``), and the other stores
21-
file metadata (e.g. ``fs.files``). The :phpclass:`MongoDB\\GridFS\\Bucket`
22-
class provides an interface around these collections for working with the
23-
files as PHP :php:`Streams <stream>`.
18+
:manual:`GridFS </core/gridfs>` is a specification for storing and retrieving
19+
files in MongoDB. GridFS uses two collections to store files. One collection
20+
stores the file chunks (e.g. ``fs.chunks``), and the other stores file
21+
metadata (e.g. ``fs.files``). The :phpclass:`MongoDB\\GridFS\\Bucket` class
22+
provides an interface around these collections for working with the files as
23+
PHP :php:`Streams <stream>`.
2424

2525
You can construct a GridFS bucket using the driver's
2626
:php:`Manager <class.mongodb-driver-manager>` class, or select a bucket from

docs/reference/method/MongoDBCollection-aggregate.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Definition
1616
.. phpmethod:: MongoDB\\Collection::aggregate()
1717

1818
Executes an :manual:`aggregation framework pipeline
19-
</core/aggregation-pipeline/>` operation on the collection.
19+
</core/aggregation-pipeline>` operation on the collection.
2020

2121
.. code-block:: php
2222

docs/reference/method/MongoDBDatabase-createCollection.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Definition
2525
collection in a command, such as when inserting a document into a new
2626
collection. You may also explicitly create a collection with specific options
2727
using the :phpmethod:`MongoDB\\Database::createCollection()` method, or using
28-
:manual:`db.createCollection() </reference/method/db.createCollection/>` in
28+
:manual:`db.createCollection() </reference/method/db.createCollection>` in
2929
the :program:`mongo` shell.
3030

3131
Explicitly creating collections enables you to create
@@ -96,4 +96,4 @@ See Also
9696

9797
- :manual:`create </reference/command/create>` command reference in the MongoDB
9898
manual
99-
- :manual:`db.createCollection() </reference/method/db.createCollection/>`
99+
- :manual:`db.createCollection() </reference/method/db.createCollection>`

docs/tutorial/commands.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ The output would then resemble::
206206
Commands with Custom Read Preference
207207
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
208208

209-
Some commands, such as :manual:`createUser </reference/command/createUser/>`,
210-
may only be executed on a :term:`primary` replica set member or a
209+
Some commands, such as :manual:`createUser </reference/command/createUser>`, may
210+
only be executed on a :term:`primary` replica set member or a
211211
:term:`standalone`.
212212

213213
The command helper methods in the |php-library|, such as
@@ -287,7 +287,7 @@ Iterate Results from a Cursor
287287
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
288288

289289
Some commands, such as :manual:`listCollections
290-
</reference/command/listCollections/>`, return their results via an iterable
290+
</reference/command/listCollections>`, return their results via an iterable
291291
cursor. To view the results, iterate through the cursor.
292292

293293
The following example lists the collections in the ``demo`` database by

docs/tutorial/gridfs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ GridFS
1010
:depth: 1
1111
:class: singlecol
1212

13-
:manual:`GridFS </core/gridfs/>` is a specification for storing and retrieving
13+
:manual:`GridFS </core/gridfs>` is a specification for storing and retrieving
1414
files in MongoDB. GridFS uses two collections to store files. One collection
1515
stores the file chunks (e.g. ``fs.chunks``), and the other stores file metadata
1616
(e.g. ``fs.files``). The :phpclass:`MongoDB\\GridFS\\Bucket` class provides an

0 commit comments

Comments
 (0)