Skip to content

Commit c945beb

Browse files
committed
remove comment
1 parent 15e916e commit c945beb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/codefixes/fixAwaitInSyncFunction.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace ts.codefix {
1919
doChange(changes, context.sourceFile, getNodeToInsertBefore(diag.file, diag.start!))),
2020
});
2121

22-
function getNodeToInsertBefore(sourceFile: SourceFile, pos: number): Node | undefined {//name
22+
function getNodeToInsertBefore(sourceFile: SourceFile, pos: number): Node | undefined {
2323
const token = getTokenAtPosition(sourceFile, pos, /*includeJsDocComment*/ false);
2424
const containingFunction = getContainingFunction(token);
2525
switch (containingFunction.kind) {

0 commit comments

Comments
 (0)