File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ export declare type PromiseOrNot<T> = T | Promise<T>;
74
74
export interface IDebugAdapter {
75
75
registerEventHandler ( eventHandler : ( event : DebugProtocol . Event ) => void ) : void ;
76
76
77
- initialize ( args : DebugProtocol . InitializeRequestArguments ) : PromiseOrNot < DebugProtocol . Capabilites > ;
77
+ initialize ( args : DebugProtocol . InitializeRequestArguments ) : PromiseOrNot < DebugProtocol . Capabilities > ;
78
78
launch ( args : ILaunchRequestArgs ) : PromiseOrNot < void > ;
79
79
configurationDone ( args : DebugProtocol . ConfigurationDoneArguments ) : void ;
80
80
disconnect ( ) : PromiseOrNot < void > ;
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ export class WebKitDebugAdapter implements IDebugAdapter {
73
73
this . _eventHandler = eventHandler ;
74
74
}
75
75
76
- public initialize ( args : DebugProtocol . InitializeRequestArguments ) : DebugProtocol . Capabilites | Promise < DebugProtocol . Capabilites > {
76
+ public initialize ( args : DebugProtocol . InitializeRequestArguments ) : DebugProtocol . Capabilities | Promise < DebugProtocol . Capabilities > {
77
77
// Cache to log if diagnostic logging is enabled later
78
78
this . _initArgs = args ;
79
79
return {
You can’t perform that action at this time.
0 commit comments