Skip to content

Commit 99a17cc

Browse files
author
Kapil Borle
committed
Fix typo in class name
1 parent 6a438d2 commit 99a17cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/animatedStatusBar.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ import {
99
window} from "vscode";
1010

1111
export function setAnimatedStatusBarMessage(text: string, hideWhenDone: Thenable<any>): Disposable {
12-
let animatedStatusBarItem: AnimatedStatuBarItem = new AnimatedStatuBarItem(text);
12+
let animatedStatusBarItem: AnimatedStatusBarItem = new AnimatedStatusBarItem(text);
1313
animatedStatusBarItem.show(hideWhenDone);
1414
return animatedStatusBarItem;
1515
}
1616

17-
class AnimatedStatuBarItem implements StatusBarItem {
17+
class AnimatedStatusBarItem implements StatusBarItem {
1818
private readonly animationRate: number;
1919
private statusBarItem: StatusBarItem;
2020
private maxCount: number;

0 commit comments

Comments
 (0)