Skip to content

Commit

Permalink
src: fix single-line comment spacing
Browse files Browse the repository at this point in the history
PR-URL: #67
  • Loading branch information
belochub committed Jan 22, 2018
1 parent b56dfd8 commit 578892d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jsrs_parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ Local<Value> ParseArray(Isolate* isolate,

for (size_t i = 1; i < *size; i++) {
i += SkipToNextToken(begin + i, end);
if (is_empty && begin[i] == ']') { // In case of empty array
if (is_empty && begin[i] == ']') { // In case of empty array
*size = i + 1;
return array;
}
Expand Down

0 comments on commit 578892d

Please sign in to comment.