Skip to content

Commit

Permalink
Fixed: Actually concatenate mixed custom options when parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Dec 26, 2016
1 parent 4375a48 commit c3023a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parse.js
Expand Up @@ -447,7 +447,7 @@ function parse(source, root, options) {
skip(")");
name = "(" + name + ")";
token = peek();
if (!isFqTypeRef(token)) {
if (isFqTypeRef(token)) {
name += token;
next();
}
Expand Down

0 comments on commit c3023a2

Please sign in to comment.