From d51db547da8d4ed4f56dd08392e4018129ddffc4 Mon Sep 17 00:00:00 2001 From: Chloe Yip Date: Fri, 12 Jul 2024 12:54:22 -0700 Subject: [PATCH] ran linters again Signed-off-by: Chloe Yip --- node/src/BaseClient.ts | 6 +++--- node/src/Transaction.ts | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/node/src/BaseClient.ts b/node/src/BaseClient.ts index a7363d3dfc..3b0debee02 100644 --- a/node/src/BaseClient.ts +++ b/node/src/BaseClient.ts @@ -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 diff --git a/node/src/Transaction.ts b/node/src/Transaction.ts index b4281c1c68..9975f480a6 100644 --- a/node/src/Transaction.ts +++ b/node/src/Transaction.ts @@ -590,8 +590,8 @@ export class BaseTransaction> { * * 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".