Skip to content

Commit

Permalink
fix a variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
DetachHead committed Nov 24, 2024
1 parent 6972e90 commit 0c3cdcf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ export class TypeInlayHintsWalker extends ParseTreeWalker {
) {
const printedTypeArgs = returnType.priv.typeArgs.flatMap((typeArg) =>
isClass(typeArg) && typeArg.priv.tupleTypeArgs && typeArg.priv.isUnpacked
? typeArg.priv.tupleTypeArgs.map((asdf) => this._printType(asdf.type))
? typeArg.priv.tupleTypeArgs.map((tupleTypeArg) => this._printType(tupleTypeArg.type))
: this._printType(typeArg)
);
if (returnType.priv.tupleTypeArgs) {
Expand Down

0 comments on commit 0c3cdcf

Please sign in to comment.