Skip to content

Commit

Permalink
Strings must use singlequote (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
bubeck authored Oct 17, 2024
1 parent 1e8518a commit d9e3422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/compiler_template.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ static const char * ${loc}_plurals_${form}[] = {
index++;
});

result += `};`;
result += '};';

return result.trim();

Expand All @@ -87,7 +87,7 @@ static const char * ${loc}_singulars[] = {
index++;
});

result += `};`;
result += '};';

return result.trim();
}
Expand Down

0 comments on commit d9e3422

Please sign in to comment.