Skip to content

Commit 50255d0

Browse files
Fix one lint warning
1 parent dee3083 commit 50255d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/targets/static.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ function syntaxForType(type) {
368368
}
369369
}
370370

371-
return (syntax !== null) ? syntax : "proto2";
371+
return syntax !== null ? syntax : "proto2";
372372
}
373373

374374
function isOptional(field, syntax) {

0 commit comments

Comments
 (0)