Fixed typo in tutorial

[closes #235] Thanks @mulka
This commit is contained in:
Ross Lawley 2011-07-18 08:35:29 +01:00
parent 6eb0387a78
commit bbd3a6961e

View File

@ -22,7 +22,7 @@ function. The only argument we need to provide is the name of the MongoDB
database to use:: database to use::
from mongoengine import * from mongoengine import *
connect('tumblelog') connect('tumblelog')
For more information about connecting to MongoDB see :ref:`guide-connecting`. For more information about connecting to MongoDB see :ref:`guide-connecting`.
@ -112,7 +112,7 @@ link table, we can just store a list of tags in each post. So, for both
efficiency and simplicity's sake, we'll store the tags as strings directly efficiency and simplicity's sake, we'll store the tags as strings directly
within the post, rather than storing references to tags in a separate within the post, rather than storing references to tags in a separate
collection. Especially as tags are generally very short (often even shorter collection. Especially as tags are generally very short (often even shorter
than a document's id), this denormalisation won't impact very strongly on the than a document's id), this denormalisation won't impact very strongly on the
size of our database. So let's take a look that the code our modified size of our database. So let's take a look that the code our modified
:class:`Post` class:: :class:`Post` class::
@ -265,5 +265,5 @@ the first matched by the query you provide. Aggregation functions may also be
used on :class:`~mongoengine.queryset.QuerySet` objects:: used on :class:`~mongoengine.queryset.QuerySet` objects::
num_posts = Post.objects(tags='mongodb').count() num_posts = Post.objects(tags='mongodb').count()
print 'Found % posts with tag "mongodb"' % num_posts print 'Found %d posts with tag "mongodb"' % num_posts