Skip to content

Commit f2e7754

Browse files
committed
Add missing closing parentheses in function calls
These were missing from #109 but weren't causing any functional problems.
1 parent 9caa247 commit f2e7754

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const query = gql`
6161
lastName
6262
}
6363
}
64-
`;
64+
`);
6565
```
6666

6767
The list of recognized tag names is defined by the `g:graphql_javascript_tags`

test/javascript/default.vader

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Given javascript (Template literal with a graphql() function):
7878
lastName
7979
}
8080
}
81-
`;
81+
`);
8282

8383
Execute (Syntax assertions):
8484
AssertEqual 'javascript', b:current_syntax
@@ -98,7 +98,7 @@ Given javascript (Custom function):
9898
lastName
9999
}
100100
}
101-
`;
101+
`);
102102

103103
Execute (Function names can be customized):
104104
let b:graphql_javascript_functions = ['gql']

test/typescript/default.vader

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Given typescript (Template literal with a graphql() function):
9595
lastName
9696
}
9797
}
98-
`;
98+
`);
9999

100100
Execute (Syntax assertions):
101101
AssertEqual 'typescript', b:current_syntax

0 commit comments

Comments
 (0)