@@ -27,15 +27,15 @@ Overview
2727--------
2828
2929Usage examples provide convenient starting points for popular MongoDB
30- operations. Each example provides:
30+ operations. Each example provides the following information :
3131
32- - an explanation of the operation in the example showing the
32+ - An explanation of the operation in the example showing the
3333 purpose and a sample use case for the method
3434
35- - an explanation of how to use the operation, including parameters,
35+ - An explanation of how to use the operation, including parameters,
3636 return values, and common exceptions you might encounter
3737
38- - a full Java class that you can copy and paste to run the example
38+ - A full Java class that you can copy and paste to run the example
3939 in your own environment
4040
4141How to Use the Usage Examples
@@ -54,20 +54,20 @@ example into your development environment of choice. You can follow the
5454:doc:`quick start guide </quick-start>` to learn more about getting
5555started with the MongoDB Java driver. Once you've copied a usage example,
5656you'll need to edit the connection string to get the example connected to
57- your instance of MongoDB:
57+ your MongoDB instance :
5858
5959.. code-block:: java
6060
6161 // Replace the following with your MongoDB deployment's connection string.
6262 String uri = "mongodb+srv://<user>:<password>@<cluster-url>?retryWrites=true&w=majority";
6363
6464You can use the :guides:`Atlas Connectivity Guide </cloud/connectionstring/>`
65- to enable connectivity to your instance of Atlas and find the
66- :manual:`connection string </reference/connection-string/>` to replace the
67- ``uri`` variable in the usage example . If your instance uses
65+ to learn how to allow connections to your instance of Atlas and to find the
66+ :manual:`connection string </reference/connection-string/>` you use to replace the
67+ ``uri`` variable in usage examples . If your instance uses
6868:manual:`SCRAM authentication </core/security-scram/>`, you can replace
6969``<user>`` with your username, ``<password>`` with your password, and
7070``<cluster-url>`` with the IP address or URL of your instance.
7171
72- For more information about connecting to your MongoDB instance, see the
73- Connection Guide.
72+ For more information about connecting to your MongoDB instance, see our
73+ :doc:` Connection Guide </fundamentals/connection/>` .
0 commit comments