Skip to content

Commit

Permalink
Fixed missing semicolon after 'extensions' and 'reserved' when genera…
Browse files Browse the repository at this point in the history
…ting proto files, fixes #810
  • Loading branch information
dcodeIO committed Jun 9, 2017
1 parent 3a86c17 commit 3b848a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/targets/proto.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function buildRanges(keyword, ranges) {
parts.push(range[0] + " to " + (range[1] === 0x1FFFFFFF ? "max" : range[1]));
});
push("");
push(keyword + " " + parts.join(", "));
push(keyword + " " + parts.join(", ") + ";");
}
}

Expand Down

0 comments on commit 3b848a1

Please sign in to comment.