From 88d881cf3aa2df3ad7c593bb75699fd5dac82a6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Lilleb=C3=B8=20Gundersen?= Date: Mon, 9 Aug 2021 20:13:38 +0200 Subject: [PATCH] Correct typo --- docs/models/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/models/index.md b/docs/models/index.md index 3fdf2da..cfe9d39 100644 --- a/docs/models/index.md +++ b/docs/models/index.md @@ -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)