Skip to content

Commit 7952ec9

Browse files
authored
Fix typo in rules (: instead of .) (#86)
1 parent 85c30ba commit 7952ec9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runner/models/guidelines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def __init__(self, name: str, children: list):
299299
"schema_guidelines",
300300
[
301301
Guideline("Always define your schema in `convex/schema.ts`."),
302-
Guideline("Always import the schema definition functions from `convex/server`:"),
302+
Guideline("Always import the schema definition functions from `convex/server`."),
303303
Guideline(
304304
"System fields are automatically added to all documents and are prefixed with an underscore. The two system fields that are automatically added to all documents are `_creationTime` which has the validator `v.number()` and `_id` which has the validator `v.id(tableName)`."
305305
),

0 commit comments

Comments
 (0)