From 738322ca57a56ed4826599cd732f82764460b22c Mon Sep 17 00:00:00 2001 From: Shoham Elias <116083498+shohamazon@users.noreply.github.com> Date: Tue, 20 Aug 2024 21:09:31 +0300 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Yury-Fridlyand Signed-off-by: Shoham Elias <116083498+shohamazon@users.noreply.github.com> --- node/src/BaseClient.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node/src/BaseClient.ts b/node/src/BaseClient.ts index 5f48d850a5..205355afd2 100644 --- a/node/src/BaseClient.ts +++ b/node/src/BaseClient.ts @@ -3256,7 +3256,9 @@ export class BaseClient { /** * Returns the original source code of a script in the script cache. - * See {@link https://valkey.io/commands/script-show} for more details. + * + * @see {@link https://valkey.io/commands/script-show|valkey.io} for more details. + * @remarks Since Valkey version 8.0.0. * * @param sha1 - The SHA1 digest of the script. * @param decoder - (Optional) {@link Decoder} type which defines how to handle the response. If not set, the default decoder from the client config will be used. @@ -3268,8 +3270,6 @@ export class BaseClient { * const scriptSource = await client.scriptShow(scriptHash); * console.log(scriptSource); // Output: "return { KEYS[1], ARGV[1] }" * ``` - * - * @remarks Since Valkey version 8.0.0. */ public async scriptShow( sha1: GlideString,