Merge pull request #158 from glyphobet/master

tiny documentation fix
This commit is contained in:
Harry Marr 2011-05-08 06:40:29 -07:00
commit 9432d1a194

View File

@ -134,8 +134,8 @@ document class as the first argument::
class Page(Document): class Page(Document):
comments = ListField(EmbeddedDocumentField(Comment)) comments = ListField(EmbeddedDocumentField(Comment))
comment1 = Comment('Good work!') comment1 = Comment(content='Good work!')
comment2 = Comment('Nice article!') comment2 = Comment(content='Nice article!')
page = Page(comments=[comment1, comment2]) page = Page(comments=[comment1, comment2])
Dictionary Fields Dictionary Fields