Skip to content

Commit

Permalink
Fix typo in diagnostic message. (#1175)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobli authored and mergify[bot] committed Jan 6, 2020
1 parent 95c85f4 commit 591a5d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jsii/lib/assembler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ export class Assembler implements Emitter {
if (LOG.isTraceEnabled()) { LOG.trace(`Leaving namespace: ${colors.cyan([...context.namespace, name].join('.'))}`); }
return allTypes;
} else {
this._diagnostic(node, ts.DiagnosticCategory.Message, `Ignoring ${ts.SyntaxKind[node.kind]} node (it cannot be represented int he jsii type model)`);
this._diagnostic(node, ts.DiagnosticCategory.Message, `Ignoring ${ts.SyntaxKind[node.kind]} node (it cannot be represented in the jsii type model)`);
}

if (!jsiiType) { return []; }
Expand Down

0 comments on commit 591a5d9

Please sign in to comment.