From 88b1a2971944e9e762910bd583fef56da2cc82a6 Mon Sep 17 00:00:00 2001 From: Harry Marr Date: Sat, 10 Sep 2011 11:54:43 +0200 Subject: [PATCH] Typo fix --- 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 13e11106..13a374cc 100644 --- a/docs/guide/querying.rst +++ b/docs/guide/querying.rst @@ -124,7 +124,7 @@ the $ positional operator :: Post.objects(comments__by="joe").update(**{'inc__comments__$__votes': 1}) -However, this doesn't map well to the syntax so you can alos use a capital S instead :: +However, this doesn't map well to the syntax so you can also use a capital S instead :: Post.objects(comments__by="joe").update(inc__comments__S__votes=1)