Skip to content

Commit c6e2d42

Browse files
committed
suggestions
1 parent e0ff397 commit c6e2d42

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

source/get-started.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Get Started with {+driver-short+}
2323
Download & Install </get-started/download-and-install/>
2424
Create a Deployment </get-started/create-a-deployment/>
2525
Create a Connection String </get-started/create-a-connection-string/>
26-
Connect to MongoDB </get-started/connect-to-mongodb/>
26+
Connect </get-started/connect-to-mongodb/>
2727
Next Steps </get-started/next-steps/>
2828

2929
Overview

source/index.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ MongoDB {+driver-short+} Documentation
1313
.. toctree::
1414

1515
Get Started </get-started>
16-
Connect to MongoDB </connect>
16+
Connect </connect>
1717
Databases & Collections </databases-collections>
1818
Write Data </write-operations>
1919
Read Data </read>
@@ -27,7 +27,7 @@ MongoDB {+driver-short+} Documentation
2727
Troubleshooting </troubleshooting>
2828
What's New </whats-new>
2929
Upgrade </upgrade>
30-
Migrate Motor to PyMongo Async </motor-async-migration>
30+
Migrate from Motor </motor-async-migration>
3131
Switch to PyMongo Async </pymongo-to-async-guide>
3232
Previous Versions </previous-versions>
3333
Issues & Help </issues-and-help>

source/indexes.txt

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

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

2727
Overview
2828
--------

source/indexes/single-field-index.txt

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

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

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

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

2727
.. note::
2828

29-
The ``_id_`` index is an example of a single-field index. This index is automatically created on the ``_id`` field
29+
The ``_id_`` index is an example of a single field index. This index is automatically created on the ``_id`` field
3030
when a new collection is created.
3131

3232
Sample Data
@@ -37,7 +37,7 @@ from the :atlas:`Atlas sample datasets </sample-data>`. To learn how to create a
3737
free MongoDB Atlas cluster and load the sample datasets, see the
3838
:ref:`<pymongo-get-started>`.
3939

40-
Create Single-Field Index
40+
Create Single Field Index
4141
-------------------------
4242

4343
The following example creates an index in ascending order on the ``title`` field:

source/work-with-indexes.txt

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

2020
.. toctree::
2121

22-
Single-Field Indexes </indexes/single-field-index.txt>
23-
Compound Indexes </indexes/compound-index.txt>
24-
Multikey Indexes </indexes/multikey-index.txt>
25-
Atlas Search Indexes /indexes/atlas-search-index.txt
26-
Text Indexes </indexes/text-index.txt>
27-
Geospatial Indexes </indexes/geospatial-index.txt>
28-
Unique Indexes </indexes/unique-index.txt>
29-
Wildcard Indexes </indexes/wildcard-index.txt>
30-
Clustered Indexes </indexes/clustered-index.txt>
22+
Single Field </indexes/single-field-index.txt>
23+
Compound </indexes/compound-index.txt>
24+
Multikey </indexes/multikey-index.txt>
25+
Atlas Search /indexes/atlas-search-index.txt
26+
Text </indexes/text-index.txt>
27+
Geospatial </indexes/geospatial-index.txt>
28+
Unique </indexes/unique-index.txt>
29+
Wildcard </indexes/wildcard-index.txt>
30+
Clustered </indexes/clustered-index.txt>
3131

3232
Overview
3333
--------

0 commit comments

Comments
 (0)