Skip to content

Commit

Permalink
Fix typos in files.ts (#157280)
Browse files Browse the repository at this point in the history
Fix typo in files.ts

Signed-off-by: Letu Ren <fantasquex@gmail.com>
  • Loading branch information
FantasqueX authored Aug 5, 2022
1 parent 39e77d7 commit 02505d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vs/platform/files/common/files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export interface IFileService {
readonly onDidChangeFileSystemProviderRegistrations: Event<IFileSystemProviderRegistrationEvent>;

/**
* An event that is fired when a registered file system provider changes it's capabilities.
* An event that is fired when a registered file system provider changes its capabilities.
*/
readonly onDidChangeFileSystemProviderCapabilities: Event<IFileSystemProviderCapabilitiesChangeEvent>;

Expand Down Expand Up @@ -80,7 +80,7 @@ export interface IFileService {
hasCapability(resource: URI, capability: FileSystemProviderCapabilities): boolean;

/**
* List the schemes and capabilies for registered file system providers
* List the schemes and capabilities for registered file system providers
*/
listCapabilities(): Iterable<{ scheme: string; capabilities: FileSystemProviderCapabilities }>;

Expand Down Expand Up @@ -982,7 +982,7 @@ interface IBaseFileStat {
readonly ctime?: number;

/**
* A unique identifier thet represents the
* A unique identifier that represents the
* current state of the file or directory.
*
* The value may or may not be resolved as
Expand Down

0 comments on commit 02505d3

Please sign in to comment.