Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in files.ts #157280

Merged
merged 1 commit into from
Aug 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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