Skip to content

Commit

Permalink
docs(docs): fixes typos in schema creation examples
Browse files Browse the repository at this point in the history
  • Loading branch information
micheleriva committed Jul 16, 2022
1 parent e4512e4 commit 6a68d5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/docs/src/guide/creating-a-database.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const movieDB = new Lyra({
director: 'string',
plot: 'string',
year: 'number',
isFavorite: 'boolean'
isFavorite: 'boolean',
}
});
```
Expand All @@ -41,7 +41,7 @@ const movieDB = new Lyra({
director: 'string',
plot: 'string',
year: 'number',
isFavorite: 'boolean'
isFavorite: 'boolean',
cast: {
director: 'string',
leading: 'string'
Expand All @@ -66,7 +66,7 @@ const movieDB = new Lyra({
director: 'string',
plot: 'string',
year: 'number',
isFavorite: 'boolean'
isFavorite: 'boolean',
},
defaultLanguage: 'italian'
});
Expand Down

0 comments on commit 6a68d5d

Please sign in to comment.