Skip to content

Commit badc211

Browse files
Merge pull request #3327 from my-organization-for-forks/master
docs: fix typo in code snippet
2 parents c29e045 + 65fcef6 commit badc211

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/graphql/resolvers-map.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -583,12 +583,12 @@ Assuming that we use the schema first approach and have enabled the typings gene
583583

584584
```typescript
585585
@@filename(graphql)
586-
export (class Author {
586+
export class Author {
587587
id: number;
588588
firstName?: string;
589589
lastName?: string;
590590
posts?: Post[];
591-
})
591+
}
592592
export class Post {
593593
id: number;
594594
title: string;

0 commit comments

Comments
 (0)