From b2455431a6607f3a28b178d3239f3f93ce071e71 Mon Sep 17 00:00:00 2001 From: Benjamin Atkin Date: Sun, 12 Feb 2012 20:11:11 -0700 Subject: [PATCH] typo in docs/WRITE_CONCERN.md --- docs/WRITE_CONCERN.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/WRITE_CONCERN.md b/docs/WRITE_CONCERN.md index b658356..c88dddc 100644 --- a/docs/WRITE_CONCERN.md +++ b/docs/WRITE_CONCERN.md @@ -10,7 +10,7 @@ Write concern is set using the `:safe` option. There are several possible option @collection.save({:doc => 'foo'}, :safe => {:w => 2, :wtimeout => 200, :j => true}) The first, `true`, simply indicates that we should request a response from the server to ensure that to errors have occurred. The second, `{:w => 2}`, forces the server to wait until at least two servers have recorded the write. The third does the same but will time out if the replication can't be completed in 200 milliseconds. -Setting a value for `wtimeout` is encouraed. +Setting a value for `wtimeout` is encouraged. Finally, the fourth example forces the journal to sync to disk if journaling is enabled.