Skip to content

Commit ad11442

Browse files
authored
DOCSP-44904 Shorten TOC Labels (mongodb#55) (mongodb#57)
* DOCSP-44904 Shorten TOC Labels * Lauren suggestion (cherry picked from commit fe5d9f8)
1 parent c75a8a6 commit ad11442

File tree

9 files changed

+50
-50
lines changed

9 files changed

+50
-50
lines changed

source/connect.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ Connect to MongoDB
2222
:titlesonly:
2323
:maxdepth: 1
2424

25-
/connect/mongoclient
26-
/connect/connection-targets
27-
/connect/connection-options
28-
/connect/tls
29-
/connect/stable-api
25+
Create a MongoClient </connect/mongoclient>
26+
Choose a Connection Target </connect/connection-targets>
27+
Connection Options </connect/connection-options>
28+
Enable TLS </connect/tls>
29+
Stable API </connect/stable-api>
3030

3131
.. /connect/network-compression
3232
.. /connect/server-selection

source/data-formats.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Specialized Data Formats
2121
:titlesonly:
2222
:maxdepth: 1
2323

24-
/data-formats/serialization
25-
/data-formats/codecs
26-
/data-formats/bson
27-
/data-formats/time-series
24+
Kotlin Serialization </data-formats/serialization>
25+
Codecs </data-formats/codecs>
26+
BSON </data-formats/bson>
27+
Time Series </data-formats/time-series>
2828

2929
.. TODO: /data-formats/data-class
3030
.. TODO: /data-formats/extended-json

source/get-started.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ Get Started with the Kotlin Sync Driver
2020

2121
.. toctree::
2222

23-
/get-started/download-and-install/
24-
/get-started/create-a-deployment/
25-
/get-started/create-a-connection-string/
26-
/get-started/connect-to-mongodb/
27-
/get-started/next-steps/
23+
Download & Install </get-started/download-and-install/>
24+
Create a Deployment </get-started/create-a-deployment/>
25+
Create a Connection String </get-started/create-a-connection-string/>
26+
Connect </get-started/connect-to-mongodb/>
27+
Next Steps </get-started/next-steps/>
2828

2929
Overview
3030
--------

source/index.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@
1414
.. toctree::
1515

1616
Get Started </get-started>
17-
/connect
18-
/write-operations
19-
/read
20-
/indexes
21-
/aggregation
22-
Use Aggregation Expression Operations </agg-exp-ops>
23-
/data-formats
24-
/builders
25-
/encrypt-fields
26-
/compatibility
27-
Validate Driver Artifact Signatures </validate-signatures>
28-
/whats-new
17+
Connect </connect>
18+
Write Data </write-operations>
19+
Read Data </read>
20+
Indexes </indexes>
21+
Data Aggregation </aggregation>
22+
Aggregation Operations </agg-exp-ops>
23+
Specialized Data Formats </data-formats>
24+
Builders </builders>
25+
In-Use Encryption </encrypt-fields>
26+
Compatibility </compatibility>
27+
Validate Driver Signatures </validate-signatures>
28+
What's New </whats-new>
2929
View the Source <https://github.com/mongodb/mongo-java-driver/tree/master/driver-kotlin-sync>
3030
API Documentation <{+api+}/com.mongodb.kotlin.client/index.html>
3131

source/indexes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Optimize Queries by Using Indexes
2222
:titlesonly:
2323
:maxdepth: 1
2424

25-
/work-with-indexes
25+
Work with Indexes </work-with-indexes>
2626

2727
Overview
2828
--------

source/indexes/single-field-index.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _kotlin-sync-single-field-index:
22

33
====================
4-
Single-Field Indexes
4+
Single Field Indexes
55
====================
66

77
.. contents:: On this page
@@ -20,19 +20,19 @@ Single-Field Indexes
2020
Overview
2121
--------
2222

23-
:manual:`Single-field indexes </core/index-single/>` are indexes with a reference to a
23+
:manual:`Single field indexes </core/index-single/>` are indexes with a reference to a
2424
single field within a collection's documents. They improve single field query and sort
2525
performance, and support :manual:`TTL Indexes </core/index-ttl>` that automatically remove
2626
documents from a collection after a certain amount of time or at a specific clock time.
2727

28-
When creating a single-field index, you must specify the following:
28+
When creating a single field index, you must specify the following:
2929

3030
- The field on which to create the index
3131
- The sort order for the indexed values (ascending or descending)
3232

3333
.. note::
3434

35-
The ``_id_`` index is an example of a single-field index. This index is automatically
35+
The ``_id_`` index is an example of a single field index. This index is automatically
3636
created on the ``_id`` field when a new collection is created.
3737

3838
Sample Data
@@ -51,7 +51,7 @@ The following {+language+} data class models the documents in this collection:
5151
:language: kotlin
5252
:copyable:
5353

54-
Create Single-Field Index
54+
Create Single Field Index
5555
-------------------------
5656

5757
The following example creates an index in ascending order on the ``title`` field:
@@ -82,7 +82,7 @@ The following is an example of a query that is covered by the index created in t
8282
Additional Information
8383
----------------------
8484

85-
To learn more about single-field indexes, see :manual:`Single Field Indexes </core/index-single>`
85+
To learn more about single field indexes, see :manual:`Single Field Indexes </core/index-single>`
8686
in the {+mdb-server+} manual.
8787

8888
API Documentation

source/read.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ Read Data from MongoDB
2222
:titlesonly:
2323
:maxdepth: 1
2424

25-
/read/specify-a-query
26-
/read/retrieve
27-
/read/project
28-
/read/specify-documents-to-return
29-
/read/count
30-
/read/distinct
31-
/read/cursors
32-
/read/change-streams
25+
Specify a Query </read/specify-a-query>
26+
Retrieve Data </read/retrieve>
27+
Specify Fields to Return </read/project>
28+
Specify Documents to Return </read/specify-documents-to-return>
29+
Count Documents </read/count>
30+
Distinct Field Values </read/distinct>
31+
Data Cursors </read/cursors>
32+
Monitor Data Changes </read/change-streams>
3333

3434
Overview
3535
--------

source/work-with-indexes.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Work with Indexes
1919

2020
.. toctree::
2121

22-
/indexes/single-field-index.txt
23-
/indexes/compound-index.txt
24-
/indexes/atlas-search-index.txt
22+
Single Field </indexes/single-field-index>
23+
Compound </indexes/compound-index>
24+
Atlas & Vector Search </indexes/atlas-search-index>
2525

2626
Overview
2727
--------

source/write-operations.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ Write Data to MongoDB
2222
:titlesonly:
2323
:maxdepth: 1
2424

25-
/write/insert
26-
/write/update
27-
/write/replace
28-
/write/delete
29-
/write/bulk-write
30-
/write/transactions
25+
Insert </write/insert>
26+
Update </write/update>
27+
Replace </write/replace>
28+
Delete </write/delete>
29+
Bulk Write </write/bulk-write>
30+
Transactions </write/transactions>
3131

3232
..
3333
/write/gridfs

0 commit comments

Comments
 (0)