From 7975f19817c7244dde390a3e60fd3e720790e315 Mon Sep 17 00:00:00 2001 From: Bruno Rocha Date: Wed, 2 Jul 2014 18:56:42 -0300 Subject: [PATCH] Update querying.rst --- docs/guide/querying.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/querying.rst b/docs/guide/querying.rst index 4a30b204..77e35df0 100644 --- a/docs/guide/querying.rst +++ b/docs/guide/querying.rst @@ -527,7 +527,7 @@ modifier comes before the field, not after it:: .. note:: - If no modifier operator is specified the default will be `set` the both following sentences are identical:: + If no modifier operator is specified the default will be ``$set``. So the following sentences are identical:: >>> BlogPost.objects(id=post.id).update(title='Example Post') >>> BlogPost.objects(id=post.id).update(set__title='Example Post')