From e3e5feceb5544d5a6888ce088b2c73345f31cf52 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Tue, 26 Oct 2021 03:49:44 +0900 Subject: [PATCH] Fix typo in timelinePane.ts (#131356) reseting -> resetting --- src/vs/workbench/contrib/timeline/browser/timelinePane.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/timeline/browser/timelinePane.ts b/src/vs/workbench/contrib/timeline/browser/timelinePane.ts index d4e623390c29f..712f52e702f47 100644 --- a/src/vs/workbench/contrib/timeline/browser/timelinePane.ts +++ b/src/vs/workbench/contrib/timeline/browser/timelinePane.ts @@ -478,7 +478,7 @@ export class TimelinePane extends ViewPane { } private async loadTimeline(reset: boolean, sources?: string[]) { - // If we have no source, we are reseting all sources, so cancel everything in flight and reset caches + // If we have no source, we are resetting all sources, so cancel everything in flight and reset caches if (sources === undefined) { if (reset) { this.clear(true);