Skip to content

Commit c3023a2

Browse files
committed
Fixed: Actually concatenate mixed custom options when parsing
1 parent 4375a48 commit c3023a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ function parse(source, root, options) {
447447
skip(")");
448448
name = "(" + name + ")";
449449
token = peek();
450-
if (!isFqTypeRef(token)) {
450+
if (isFqTypeRef(token)) {
451451
name += token;
452452
next();
453453
}

0 commit comments

Comments
 (0)