Skip to content

Commit

Permalink
Updated some @todo comments
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Dec 3, 2024
1 parent 19663b1 commit 8c99ee8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/devices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { decodeUTF8 } from './utils.js';

/**
* A device
* @todo Maybe add major/minor number or some other device information, like a UUID?
* @todo Maybe add some other device information, like a UUID?
* @privateRemarks
* UUIDs were considered, however they don't make sense without an easy mechanism for persistence
*/
Expand Down
1 change: 0 additions & 1 deletion src/emulation/promises.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1166,7 +1166,6 @@ export async function statfs(this: V_Context, path: fs.PathLike, opts?: fs.StatF

/**
* Retrieves the files matching the specified pattern.
* @todo Implement
*/
export function glob(this: V_Context, pattern: string | string[]): NodeJS.AsyncIterator<string>;
export function glob(this: V_Context, pattern: string | string[], opt: fs.GlobOptionsWithFileTypes): NodeJS.AsyncIterator<Dirent>;
Expand Down
2 changes: 1 addition & 1 deletion src/inode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const rootIno = 0n;
/**
* Generic inode definition that can easily be serialized.
* @internal
* @todo [BREAKING]
* @todo [BREAKING] Remove 58 byte Inode upgrade path
*/
@struct()
export class Inode implements StatsLike {
Expand Down

0 comments on commit 8c99ee8

Please sign in to comment.