@@ -31,7 +31,7 @@ What type of locking does MongoDB use?
31
31
In addition to a shared (S) locking mode for reads and an exclusive
32
32
(X) locking mode for write operations, intent shared (IS) and intent
33
33
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,
35
35
all higher levels are locked using an :term:`intent lock`.
36
36
37
37
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
172
172
other members of the set service load while maintenance is in progress.
173
173
174
174
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:
176
176
177
177
- :method:`db.collection.createIndex()`, when issued
178
178
*without* setting ``background`` to ``true``,
@@ -312,11 +312,11 @@ Can reads see changes that have not been committed to disk?
312
312
313
313
.. versionchanged:: 3.2
314
314
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.
316
316
Clients using :readconcern:`majority` ``readConcern`` cannot see the
317
317
results of writes before they are made :term:`durable`.
318
318
319
- Readers, using :readconcern:`"local"` ``readConcern`` can see the
319
+ Readers using :readconcern:`"local"` ``readConcern`` can see the
320
320
results of writes before they are made :term:`durable`, regardless of
321
321
write concern level or journaling configuration. As a result,
322
322
applications may observe the following behaviors:
0 commit comments