Skip to content

Commit a70fb23

Browse files
committed
Fix lint
1 parent ab32e99 commit a70fb23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/steps/validate-model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ export default async function validateModel (apiModel: model.Model, restSpec: Ma
541541
}
542542

543543
function validateTypeAlias (typeDef: model.TypeAlias): void {
544-
const openGenerics = openGenericSet(typeDef);
544+
const openGenerics = openGenericSet(typeDef)
545545

546546
if (typeDef.variants != null) {
547547
if (typeDef.type.kind !== 'union_of') {

0 commit comments

Comments
 (0)