Fix typo in helpers.ts (#45365)

funtions
This commit is contained in:
Ikko Ashimine
2021-08-10 00:40:54 +09:00
committed by GitHub
parent 75cb8b2393
commit 5e496d52e1

View File

@@ -1,7 +1,7 @@
/* @internal */
namespace ts.refactor {
/**
* Returned by refactor funtions when some error message needs to be surfaced to users.
* Returned by refactor functions when some error message needs to be surfaced to users.
*/
export interface RefactorErrorInfo {
error: string;
@@ -22,4 +22,4 @@ namespace ts.refactor {
if(!requested) return true;
return known.substr(0, requested.length) === requested;
}
}
}