Skip to content

Commit

Permalink
Fix missing comma in generator
Browse files Browse the repository at this point in the history
  • Loading branch information
jathak committed May 21, 2024
1 parent 352cd12 commit 8bc33ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/get-deprecations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export async function getDeprecations(outDirectory: string) {
tsText +=
` ${key}: {\n` +
` id: '${id}',\n` +
` description: '${deprecation.description}'\n` +
` description: '${deprecation.description}',\n` +
` status: '${dartSass.status}',\n` +
` deprecatedIn: ${toVersionCode(dartSass.deprecated)},\n` +
` obsoleteIn: ${toVersionCode(dartSass.obsolete)},\n` +
Expand Down

0 comments on commit 8bc33ca

Please sign in to comment.