Skip to content

Commit 99b2cf7

Browse files
milkiekay-kim
authored andcommitted
minor typographical
Signed-off-by: kay <[email protected]>
1 parent d273dad commit 99b2cf7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/faq/concurrency.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ What type of locking does MongoDB use?
3131
In addition to a shared (S) locking mode for reads and an exclusive
3232
(X) locking mode for write operations, intent shared (IS) and intent
3333
exclusive (IX) modes indicate an intent to read or write a resource
34-
using a finer granularity lock. When locking at a certain granularity
34+
using a finer granularity lock. When locking at a certain granularity,
3535
all higher levels are locked using an :term:`intent lock`.
3636

3737
For example, when locking a collection for writing (using mode X),
@@ -172,7 +172,7 @@ of a :term:`replica set`, take the :program:`mongod` offline and let
172172
other members of the set service load while maintenance is in progress.
173173

174174
The following administrative operations require an exclusive
175-
(i.e. write) lock on the database for extended periods:
175+
lock at the database level for extended periods:
176176

177177
- :method:`db.collection.createIndex()`, when issued
178178
*without* setting ``background`` to ``true``,
@@ -312,11 +312,11 @@ Can reads see changes that have not been committed to disk?
312312

313313
.. versionchanged:: 3.2
314314

315-
MongoDB 3.2 introduces :ref:`3.2-rel-notes-readConcern` option.
315+
MongoDB 3.2 introduced the :ref:`3.2-rel-notes-readConcern` option.
316316
Clients using :readconcern:`majority` ``readConcern`` cannot see the
317317
results of writes before they are made :term:`durable`.
318318

319-
Readers, using :readconcern:`"local"` ``readConcern`` can see the
319+
Readers using :readconcern:`"local"` ``readConcern`` can see the
320320
results of writes before they are made :term:`durable`, regardless of
321321
write concern level or journaling configuration. As a result,
322322
applications may observe the following behaviors:

0 commit comments

Comments
 (0)