Fix doc typos

This commit is contained in:
Don Spaulding
2010-04-14 22:40:56 -05:00
parent 2b08ca7c99
commit da3f4c30e2
2 changed files with 2 additions and 2 deletions

View File

@@ -178,7 +178,7 @@ either a single field name, or a list or tuple of field names::
class User(Document):
username = StringField(unique=True)
first_name = StringField()
last_name = StringField(unique_with='last_name')
last_name = StringField(unique_with='first_name')
Document collections
====================