diff --git a/docs/querying/operators.mdx b/docs/querying/operators.mdx index 15f1f65e..09ac2192 100644 --- a/docs/querying/operators.mdx +++ b/docs/querying/operators.mdx @@ -254,7 +254,7 @@ SELECT * FROM "posts" WHERE "commentCount" < 10; ```ts Post.findAll({ where: { - commentCount: { [Op.gte]: 10 }, + commentCount: { [Op.lte]: 10 }, }, }); ```