Skip to content

Commit 2e137bd

Browse files
committed
fix comments indentation in example
1 parent 02598ce commit 2e137bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_includes/themes/metromongo/frontpage.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ <h3>Simple to use</h3>
2828
{% highlight python %}
2929
from mongoengine import * # To define a schema for a
3030
# document, we create a
31-
class Metadata(EmbeddedDocument): # class that inherits from
31+
class Metadata(EmbeddedDocument): # class that inherits from
3232
tags = ListField(StringField()) # Document.
3333
revisions = ListField(IntField())
3434
# Fields are specified by
35-
class WikiPage(Document): # adding field objects as
35+
class WikiPage(Document): # adding field objects as
3636
title = StringField(required=True) # class attributes to the
3737
text = StringField() # document class.
3838
metadata = EmbeddedDocumentField(Metadata)

0 commit comments

Comments
 (0)