Skip to content

Commit

Permalink
Update docs/guides/tutorials/cloudflare_workers.rst
Browse files Browse the repository at this point in the history
Co-authored-by: Scott Trinh <[email protected]>
  • Loading branch information
beerose and scotttrinh authored Feb 13, 2024
1 parent b47d649 commit f404e8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/guides/tutorials/cloudflare_workers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,14 @@ Add new types to the schema file:
module default {
type Movie {
required property title -> str {
required title: str {
constraint exclusive;
};
multi link actors -> Person;
multi actors: Person;
}
type Person {
required property name -> str;
required name: str;
}
}
Expand Down

0 comments on commit f404e8c

Please sign in to comment.