Skip to content

Commit

Permalink
Update overview SDL for modern syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
scotttrinh committed Mar 20, 2024
1 parent f9f39c9 commit 0cc8104
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/index.rst
Expand Up @@ -112,14 +112,14 @@ of the ``Movie`` type exclusive. This will help with filtering by
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 0cc8104

Please sign in to comment.