diff --git a/src/backends/SyncStore.ts b/src/backends/SyncStore.ts index f26634396..08244983c 100644 --- a/src/backends/SyncStore.ts +++ b/src/backends/SyncStore.ts @@ -32,7 +32,7 @@ export interface SyncStore { */ export interface SyncTransaction { /** - * Retrieves the data at the given key. Throws an ApiError if an error occurs + * Retrieves the data at the given key. Throws an error if an error occurs * or if the key does not exist. * @param ino The key to look under for data. * @return The data stored under the key, or undefined if not present. diff --git a/src/error.ts b/src/error.ts index b6f2d2f96..e7b1502d7 100644 --- a/src/error.ts +++ b/src/error.ts @@ -269,7 +269,6 @@ export class ErrnoError extends Error implements NodeJS.ErrnoException { * * Error codes mirror those returned by regular Unix file operations, which is * what Node returns. - * @constructor ApiError * @param type The type of the error. * @param message A descriptive error message. */