Remove reference to hashes in JSON example

This commit is contained in:
Andrew Brookins 2021-09-01 13:13:46 -07:00
parent a984bc21cc
commit afe05fb7dd

View file

@ -45,7 +45,7 @@ class Member(BaseJsonModel):
email: str = Field(unique=True, index=True)
join_date: datetime.date
# Creates an embedded model: stored as hash fields or JSON document.
# Creates an embedded model.
address: Address
# Creates an embedded list of models.