Skip to content

Commit 850a08f

Browse files
committed
fix typo
1 parent 54287bc commit 850a08f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/authentication.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ export default class GitpodAuthenticationProvider extends Disposable implements
305305
}
306306

307307
public handleUri(uri: vscode.Uri) {
308-
this._gitpodServer.hadleUri(uri);
308+
this._gitpodServer.handleUri(uri);
309309
}
310310

311311
public override dispose() {

src/gitpodServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export default class GitpodServer extends Disposable {
170170
return getUserInfo(token, this._serviceUrl, this._logger);
171171
}
172172

173-
public hadleUri(uri: vscode.Uri) {
173+
public handleUri(uri: vscode.Uri) {
174174
this._uriEmitter.fire(uri);
175175
}
176176

0 commit comments

Comments
 (0)