Update files.ts

Spelling mistake correction.
This commit is contained in:
Varan Shukla 2018-10-25 16:41:42 +05:30 committed by GitHub
parent 0ebf5f2d5f
commit 76af0df43b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,7 +74,7 @@ export interface IFileService {
resolveFile(resource: URI, options?: IResolveFileOptions): TPromise<IFileStat>;
/**
* Same as resolveFile but supports resolving mulitple resources in parallel.
* Same as resolveFile but supports resolving multiple resources in parallel.
* If one of the resolve targets fails to resolve returns a fake IFileStat instead of making the whole call fail.
*/
resolveFiles(toResolve: { resource: URI, options?: IResolveFileOptions }[]): TPromise<IResolveFileResult[]>;