mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
Fix method spelling
This commit is contained in:
@@ -483,7 +483,7 @@ export default class BufferSyncSupport extends Disposable {
|
||||
}
|
||||
}
|
||||
|
||||
public interuptGetErr<R>(f: () => R): R {
|
||||
public interruptGetErr<R>(f: () => R): R {
|
||||
if (!this.pendingGetErr
|
||||
|| this.client.configuration.enableProjectDiagnostics // `geterr` happens on seperate server so no need to cancel it.
|
||||
) {
|
||||
|
||||
@@ -776,7 +776,7 @@ export default class TypeScriptServiceClient extends Disposable implements IType
|
||||
}
|
||||
|
||||
public interruptGetErr<R>(f: () => R): R {
|
||||
return this.bufferSyncSupport.interuptGetErr(f);
|
||||
return this.bufferSyncSupport.interruptGetErr(f);
|
||||
}
|
||||
|
||||
private fatalError(command: string, error: unknown): void {
|
||||
|
||||
Reference in New Issue
Block a user