mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 10:38:59 +01:00
💄 fix typo
This commit is contained in:
@@ -168,7 +168,7 @@ export class ExtHostModelService {
|
||||
});
|
||||
}
|
||||
|
||||
$getUnferencedDocuments(): TPromise<URI[]> {
|
||||
$getUnreferencedDocuments(): TPromise<URI[]> {
|
||||
const result: URI[] = [];
|
||||
for (let key in this._documentData) {
|
||||
if (!this._documentData[key].isDocumentReferenced) {
|
||||
@@ -648,7 +648,7 @@ export class MainThreadDocuments {
|
||||
}
|
||||
|
||||
private _runDocumentCleanup(): void {
|
||||
this._proxy.$getUnferencedDocuments().then(resources => {
|
||||
this._proxy.$getUnreferencedDocuments().then(resources => {
|
||||
|
||||
const toBeDisposed: URI[] = [];
|
||||
const promises = resources.map(resource => {
|
||||
|
||||
Reference in New Issue
Block a user