Fix docblock for FileSystemError

This commit is contained in:
David Linskey
2019-05-14 21:35:55 -07:00
parent 9e4b65600d
commit 189e9a4c28
+2 -2
View File
@@ -5500,8 +5500,8 @@ declare module 'vscode' {
/**
* A type that filesystem providers should use to signal errors.
*
* This class has factory methods for common error-cases, like `EntryNotFound` when
* a file or folder doesn't exist, use them like so: `throw vscode.FileSystemError.EntryNotFound(someUri);`
* This class has factory methods for common error-cases, like `FileNotFound` when
* a file or folder doesn't exist, use them like so: `throw vscode.FileSystemError.FileNotFound(someUri);`
*/
export class FileSystemError extends Error {