minor documentation typo fix

This commit is contained in:
Nathan Ehresman 2011-06-24 08:55:03 -04:00
parent 0821e16f92
commit aa6c4de9d1
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ We can update the previous document using the `update` method. There are a coupl
Or we can use an atomic operator to change a single value:
coll.update({"_id" => doc["_id"]}, {"$set" => {"name" => "MongoDB Ruby"`)
coll.update({"_id" => doc["_id"]}, {"$set" => {"name" => "MongoDB Ruby"}})
Read [more about updating documents|Updating].