From aa6c4de9d1bb1bf49780cfcc4913988add9987d6 Mon Sep 17 00:00:00 2001 From: Nathan Ehresman Date: Fri, 24 Jun 2011 08:55:03 -0400 Subject: [PATCH] minor documentation typo fix --- docs/TUTORIAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/TUTORIAL.md b/docs/TUTORIAL.md index 4151b9c..2d7051c 100644 --- a/docs/TUTORIAL.md +++ b/docs/TUTORIAL.md @@ -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].