Skip to content

Commit 828ff73

Browse files
authored
DOCSP-37272: Various quick fixes to wording and accuracy (#189)
DOCSP-37272: Various quick fixes to wording and accuracy
1 parent 21d11e9 commit 828ff73

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

source/connection-troubleshooting.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ driver could generate this error.
202202
Also ensure that the user has the appropriate permissions for the message you
203203
are sending. MongoDB uses Role-Based Access Control (RBAC) to control access
204204
to a MongoDB deployment. For more information about how to configure RBAC in MongoDB,
205-
see :manual:`Default MongoDB Port </core/authorization/>`.
205+
see :manual:`Role-Based Access Control </core/authorization/>`.
206206

207207
Configure Your Firewall
208208
-----------------------

source/fundamentals/builders.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,9 @@ single field path``, in this case using ``Category``:
272272
// Using string-based field names
273273
var keys = builder.Wildcard("Category");
274274

275+
For more information about how to use wildcard indexes, see
276+
:manual:`Wildcard Indexes </core/indexes/index-types/index-wildcard>`.
277+
275278
Build an Aggregation Pipeline
276279
-----------------------------
277280

source/fundamentals/connection/tls.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ the :ref:`connection string <csharp-connection-uri>` or
2525
Enable TLS
2626
----------
2727

28-
You can enable TLS for the connection to your MongoDB instance
29-
in two different ways: using a property on a ``MongoClientSettings`` object or
30-
through a parameter in your connection string.
28+
By default, TLS is disabled when connecting to MongoDB instances. You can enable TLS
29+
for the connection to your MongoDB instance in two different ways: using a property
30+
on a ``MongoClientSettings`` object or through a parameter in your connection string.
3131

3232
.. note::
3333

source/fundamentals/serialization/class-mapping.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Mapping with Constructors
140140
By default, the {+driver-short+} can automatically map a class only if the class has
141141
a constructor with no arguments. If you want the driver to use a constructor that accepts
142142
one or more arguments, you can add the ``BsonConstructor`` attribute to the constructor.
143-
In this case, the driver the driver examines the types to determine how to map the
143+
In this case, the driver examines the types to determine how to map the
144144
constructor arguments to class properties or fields.
145145

146146
When the driver creates a class map for the following ``Person`` class, it will use the

source/quick-start.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ Query Your MongoDB Cluster from Your Application
9494
------------------------------------------------
9595

9696
In this step, you'll use the {+driver-short+}
97-
to connect to your MongoDB cluster and run a query on the sample data.
97+
to connect to your MongoDB cluster and run a query on the sample data. You'll need your
98+
preferred text editor or :wikipedia:`integrated development environment (IDE) <w/index.php?title=Integrated_development_environment&oldid=1220874232>`
99+
installed and running.
98100

99101
Open the file named ``Program.cs`` in the base directory of your project. Copy the
100102
following sample code into ``Program.cs``

0 commit comments

Comments
 (0)