Skip to content

Commit

Permalink
ran linters again
Browse files Browse the repository at this point in the history
Signed-off-by: Chloe Yip <[email protected]>
  • Loading branch information
cyip10 committed Jul 12, 2024
1 parent 7664646 commit d51db54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions node/src/BaseClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1065,10 +1065,10 @@ export class BaseClient {
*
* See https://valkey.io/commands/lset/ for details.
*
* @param key The key of the list.
* @param index The index of the element in the list to be set.
* @param key - The key of the list.
* @param index - The index of the element in the list to be set.
* @param element - The new element to set at the specified index.
* @return always "OK".
* @returns always "OK".
*
* @example
* ```typescript
Expand Down
4 changes: 2 additions & 2 deletions node/src/Transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -590,8 +590,8 @@ export class BaseTransaction<T extends BaseTransaction<T>> {
*
* See https://valkey.io/commands/lset/ for details.
*
* @param key The key of the list.
* @param index The index of the element in the list to be set.
* @param key - The key of the list.
* @param index - The index of the element in the list to be set.
* @param element - The new element to set at the specified index.
*
* Command Response - always "OK".
Expand Down

0 comments on commit d51db54

Please sign in to comment.