From c760f5b44c40534416266129e481177dd78a7f8c Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Tue, 16 Nov 2021 23:06:45 +0900 Subject: [PATCH] Fix typo in referencesDocument.ts containg -> containing --- contentprovider-sample/src/referencesDocument.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contentprovider-sample/src/referencesDocument.ts b/contentprovider-sample/src/referencesDocument.ts index 788d2633..b1455812 100644 --- a/contentprovider-sample/src/referencesDocument.ts +++ b/contentprovider-sample/src/referencesDocument.ts @@ -18,7 +18,7 @@ export default class ReferencesDocument { this._locations = locations; // The ReferencesDocument has access to the event emitter from - // the containg provider. This allows it to signal changes + // the containing provider. This allows it to signal changes this._emitter = emitter; // Start with printing a header and start resolving @@ -37,7 +37,7 @@ export default class ReferencesDocument { private async _populate() { - // group all locations by files containg them + // group all locations by files containing them const groups: vscode.Location[][] = []; let group: vscode.Location[] = []; for (const loc of this._locations) {