Skip to content

Commit ed1b29f

Browse files
michaeltwofishSam Kleinman
authored andcommitted
Fix capitalisation typos
Signed-off-by: Sam Kleinman <[email protected]>
1 parent ead761e commit ed1b29f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/tutorial/write-scripts-for-the-mongo-shell.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,19 @@ This returns the output of :method:`db.getCollectionNames()` using the
9090
evaluate a javascript file
9191
~~~~~~~~~~~~~~~~~~~~~~~~~~
9292

93-
you can specify a ``.js`` file to the :program:`mongo` shell, and
93+
You can specify a ``.js`` file to the :program:`mongo` shell, and
9494
:program:`mongo` will evaluate the javascript directly. consider the
9595
following example:
9696

9797
.. code-block:: sh
9898

9999
mongo localhost:27017/test myjsfile.js
100100

101-
this operation evaluates the ``myjsfile.js`` script in a
101+
This operation evaluates the ``myjsfile.js`` script in a
102102
:program:`mongo` shell that connects to the ``test`` :term:`database`
103103
on the :program:`mongod` instance accessible via the ``localhost``
104104
interface on port ``27017``.
105105

106-
alternately, you can specify the mongodb connection parameters inside
106+
Alternately, you can specify the mongodb connection parameters inside
107107
of the javascript file using the ``Mongo()`` constructor. See
108108
:ref:`mongo-shell-new-connections` for more information.

0 commit comments

Comments
 (0)