File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export class JsonServer {
28
28
protected readonly documents = new TextDocuments ( ) ;
29
29
30
30
protected readonly jsonService : LanguageService = getLanguageService ( {
31
- schemaRequestService : this . resovleSchema . bind ( this )
31
+ schemaRequestService : this . resolveSchema . bind ( this )
32
32
} ) ;
33
33
34
34
protected readonly pendingValidationRequests = new Map < string , number > ( ) ;
@@ -193,7 +193,7 @@ export class JsonServer {
193
193
return this . jsonService . doHover ( document , params . position , jsonDocument ) ;
194
194
}
195
195
196
- protected async resovleSchema ( url : string ) : Promise < string > {
196
+ protected async resolveSchema ( url : string ) : Promise < string > {
197
197
const uri = URI . parse ( url ) ;
198
198
if ( uri . scheme === 'file' ) {
199
199
return new Promise < string > ( ( resolve , reject ) => {
You can’t perform that action at this time.
0 commit comments