Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 12, 2023
1 parent 503a179 commit b611d13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doubly-linked-list/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ declare class Node {
/**
* Private field pointing to the next node.
*/
private readonly _next: Node; // tslint:disable-line:variable-name
private readonly _next: Node;

/**
* Private field pointing to the previous node.
*/
private readonly _prev: Node; // tslint:disable-line:variable-name
private readonly _prev: Node;
}

/**
Expand Down
4 changes: 2 additions & 2 deletions linked-list/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ declare class Node {
/**
* Private field pointing to the next node.
*/
private readonly _next: Node; // tslint:disable-line:variable-name
private readonly _next: Node;

/**
* Private field pointing to the previous node.
*/
private readonly _prev: Node; // tslint:disable-line:variable-name
private readonly _prev: Node;
}

/**
Expand Down

0 comments on commit b611d13

Please sign in to comment.