Skip to content

Commit c1ea714

Browse files
committed
DOCS-563 fix links
1 parent 74facd3 commit c1ea714

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

source/applications.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The following documents outline basic application development topics:
3232

3333
applications/drivers
3434
applications/database-references
35-
core/ObjectId
35+
core/object-id
3636

3737
.. seealso::
3838

source/core/object-id.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
ObjectId
33
========
44

5+
.. default-domain:: mongodb
6+
57
:term:`ObjectId <objectid>` is a 12-byte :term:`BSON` type,
68
constructed using:
79

@@ -21,7 +23,7 @@ Using ObjectIds for the ``_id`` field, provides the following
2123
additional benefits:
2224

2325
- you can access the timestamp of the ObjectId's creation, using the
24-
:method:`getTimestamp() <ObjectId.getTimeStamp()>` method.
26+
:method:`getTimestamp() <ObjectId.getTimestamp()>` method.
2527

2628
- Sorting on an ``_id`` field that stores ObjectId values, is
2729
equivalent to sorting by creation time.
@@ -35,7 +37,7 @@ The :program:`mongo` shell provides the ``ObjectId()`` wrapper class
3537
to generate can generate a new ObjectId, and to provide the following
3638
helper attribute and methods:
3739

38-
- ``str`
40+
- ``str``
3941

4042
The hexadecimal string value of the ``ObjectID()`` object.
4143

@@ -52,7 +54,7 @@ helper attribute and methods:
5254
In previous versions :method:`ObjectId.toString()>` returns the
5355
value of the ObjectId as a hexadecimal string.
5456

55-
- :method:``valueOf() <ObjectId.valueOf()>`
57+
- :method:`valueOf() <ObjectId.valueOf()>`
5658

5759
Returns the value of the ``ObjectId()`` object as a hexadecimal string.
5860
The returned string is the ``str`` attribute.

0 commit comments

Comments
 (0)