Correct typo

This commit is contained in:
Sondre Lillebø Gundersen
2021-08-09 20:13:38 +02:00
parent 5bd7b66f8f
commit 88d881cf3a

View File

@ -33,7 +33,7 @@ Only one primary key column is allowed.
By default if you assign primary key to `Integer` field, the `autoincrement` option is set to true.
You can disable by passing `autoincremant=False`.
You can disable by passing `autoincrement=False`.
```Python
id: int = ormar.Integer(primary_key=True, autoincrement=False)