diff --git a/source/get-started/connect-to-mongodb.txt b/source/get-started/connect-to-mongodb.txt index 549c9bb..466b680 100644 --- a/source/get-started/connect-to-mongodb.txt +++ b/source/get-started/connect-to-mongodb.txt @@ -31,16 +31,16 @@ Connect to MongoDB .. code-block:: none :copyable: false - + Movie(title=Before Sunrise, year=1995, directors=[Richard Linklater]) - If you don't see any output or receive an error, check whether you - included the proper connection string in your application. Also, confirm - that you successfully loaded the sample dataset into your MongoDB Atlas cluster. + If you don't see any output or receive an error, check whether you + included the proper connection string in your application. Also, confirm + that you successfully loaded the sample dataset into your MongoDB Atlas cluster. - After completing this step, you have a working application that uses - the {+driver-short+} to connect to your MongoDB cluster, run a query on the - sample data, and print out the result. + After completing this step, you have a working application that uses + the {+driver-short+} to connect to your MongoDB cluster, run a query on the + sample data, and print out the result. .. step:: Use the Document Class to Model Data (Alternative) diff --git a/source/get-started/download-and-install.txt b/source/get-started/download-and-install.txt index 6d79732..e9aaaf3 100644 --- a/source/get-started/download-and-install.txt +++ b/source/get-started/download-and-install.txt @@ -7,20 +7,21 @@ Download and Install .. procedure:: :style: connected - .. step:: Install {+language+} + .. step:: Create a {+language+} Project - Make sure that your system has {+language+} installed and running - on JDK 1.8 or later. For more information on getting started with - {+language+} and JVM development, see `Get started with Kotlin/JVM - <{+kotlin-docs+}/docs/jvm-get-started.html>`__ in the {+language+} - language documentation. + First, make sure that your system has {+language+} installed and + running on JDK 1.8 or later. - .. step:: Create a {+language+} Project + This guide shows you how to create a project and add the + {+driver-short+} dependencies by using Gradle or Maven. We + recommend that you use an integrated development + environment (IDE) such as IntelliJ IDEA or Eclipse IDE to + configure Gradle or Maven to build and run your project. - This guide shows you how to add the {+driver-short+} dependencies - by using Gradle or Maven. We recommend that you use an integrated development - environment (IDE) such as IntelliJ IDEA or Eclipse IDE to configure - Gradle or Maven to build and run your project. + For more information on getting started with + {+language+} and creating your first project, see `Get started with Kotlin/JVM + <{+kotlin-docs+}/docs/jvm-get-started.html>`__ in the {+language+} + language documentation. .. tip::