Skip to content

Commit

Permalink
docs(interfaces): fix typo in decorator name
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalLytek committed Jun 17, 2020
1 parent 2ddfbe5 commit 3c93010
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/interfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class Node {
id: string;
}

@ObjectType({ implements: Node })
@InterfaceType({ implements: Node })
class Person extends Node {
@Field()
name: string;
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-1.0.0-rc.1/interfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class Node {
id: string;
}

@ObjectType({ implements: Node })
@InterfaceType({ implements: Node })
class Person extends Node {
@Field()
name: string;
Expand Down

0 comments on commit 3c93010

Please sign in to comment.