From 133039de05d01b356bff2f2f7b23c70045213183 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20R=C3=BCckstie=C3=9F?= Date: Wed, 12 Jun 2013 10:22:32 +1000 Subject: [PATCH] Update isolated.txt corrected grammar typo. --- source/reference/operator/isolated.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/reference/operator/isolated.txt b/source/reference/operator/isolated.txt index ccab621da65..f56b8863b5a 100644 --- a/source/reference/operator/isolated.txt +++ b/source/reference/operator/isolated.txt @@ -21,7 +21,7 @@ $isolated db.foo.update( { field1 : 1 , $isolated : 1 }, { $inc : { field2 : 1 } } , { multi: true } ) Without the :operator:`$isolated` operator, multi-updates will allow - other operations to interleave with this updates. If these + other operations to interleave with these updates. If these interleaved operations contain writes, the update operation may produce unexpected results. By specifying :operator:`$isolated` you can guarantee isolation for the entire multi-update.