Skip to content

Commit

Permalink
Add missing closing parentheses in function calls
Browse files Browse the repository at this point in the history
These were missing from #109 but weren't causing any functional
problems.
  • Loading branch information
jparise committed Oct 23, 2024
1 parent 9caa247 commit f2e7754
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const query = gql`
lastName
}
}
`;
`);
```

The list of recognized tag names is defined by the `g:graphql_javascript_tags`
Expand Down
4 changes: 2 additions & 2 deletions test/javascript/default.vader
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Given javascript (Template literal with a graphql() function):
lastName
}
}
`;
`);

Execute (Syntax assertions):
AssertEqual 'javascript', b:current_syntax
Expand All @@ -98,7 +98,7 @@ Given javascript (Custom function):
lastName
}
}
`;
`);

Execute (Function names can be customized):
let b:graphql_javascript_functions = ['gql']
Expand Down
2 changes: 1 addition & 1 deletion test/typescript/default.vader
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Given typescript (Template literal with a graphql() function):
lastName
}
}
`;
`);

Execute (Syntax assertions):
AssertEqual 'typescript', b:current_syntax
Expand Down

0 comments on commit f2e7754

Please sign in to comment.