Skip to content

Commit 2d4d725

Browse files
committed
DOCS-619 Fix class name in flask tutorial
1 parent 8e6375b commit 2d4d725

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/tutorial/write-a-tumblelog-application-with-flask-mongoengine.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ class and create new classes for the new post types. Update the
819819

820820
.. code-block:: python
821821

822-
class Post(db.Dynamic Document):
822+
class Post(db.DynamicDocument):
823823
created_at = db.DateTimeField(default=datetime.datetime.now, required=True)
824824
title = db.StringField(max_length=255, required=True)
825825
slug = db.StringField(max_length=255, required=True)

0 commit comments

Comments
 (0)