mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-16 07:13:45 -05:00
Add missing apostrophe to codefix suggestion
This commit is contained in:
@@ -677,7 +677,7 @@ namespace ts.refactor.extractSymbol {
|
||||
case SyntaxKind.ArrowFunction:
|
||||
return "arrow function";
|
||||
case SyntaxKind.MethodDeclaration:
|
||||
return `method '${scope.name.getText()}`;
|
||||
return `method '${scope.name.getText()}'`;
|
||||
case SyntaxKind.GetAccessor:
|
||||
return `'get ${scope.name.getText()}'`;
|
||||
case SyntaxKind.SetAccessor:
|
||||
|
||||
Reference in New Issue
Block a user