mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 16:15:41 +01:00
Fixes Microsoft/monaco-editor#799: Fix typo
This commit is contained in:
parent
c53f010cc1
commit
f800aa3abe
2 changed files with 2 additions and 2 deletions
|
|
@ -79,7 +79,7 @@ export class LanguageServiceDefaultsImpl implements monaco.languages.typescript.
|
|||
this._onDidChange.fire(this);
|
||||
}
|
||||
|
||||
setMaximunWorkerIdleTime(value: number): void {
|
||||
setMaximumWorkerIdleTime(value: number): void {
|
||||
// doesn't fire an event since no
|
||||
// worker restart is required here
|
||||
this._workerMaxIdleTime = value;
|
||||
|
|
|
|||
2
src/monaco.d.ts
vendored
2
src/monaco.d.ts
vendored
|
|
@ -135,7 +135,7 @@ declare module monaco.languages.typescript {
|
|||
* @param value The maximun idle time in milliseconds. Values less than one
|
||||
* mean never shut down.
|
||||
*/
|
||||
setMaximunWorkerIdleTime(value: number): void;
|
||||
setMaximumWorkerIdleTime(value: number): void;
|
||||
|
||||
/**
|
||||
* Configure if all existing models should be eagerly sync'd
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue