Skip to content

Commit c27cf55

Browse files
authored
Merge pull request #7 from bedanley/feature/native-enum-export
Update italics for Native Enums
2 parents be66f90 + d0b52d4 commit c27cf55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/formatter/format.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ function formatModelInline(
391391
);
392392
case 'native-enum':
393393
return (
394-
md.italic('Native enum: ') +
394+
md.italic('Native enum:') +
395395
md.list.html.unordered(
396396
nativeEnumEntries(model.enum).map(([key, value]) =>
397397
md.code.inline(`${key} = ${formatLiteral(value)}`)

0 commit comments

Comments
 (0)