From 0fa77fb49e7dc4170ab8994d1943c328ebd2459a Mon Sep 17 00:00:00 2001 From: tjzhang-BQ <111323543+tjzhang-BQ@users.noreply.github.com> Date: Fri, 13 Dec 2024 15:39:43 -0800 Subject: [PATCH] linter Signed-off-by: tjzhang-BQ <111323543+tjzhang-BQ@users.noreply.github.com> --- go/api/set_commands.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/go/api/set_commands.go b/go/api/set_commands.go index 90110108db..86a3c73d2c 100644 --- a/go/api/set_commands.go +++ b/go/api/set_commands.go @@ -333,8 +333,7 @@ type SetCommands interface { // // Parameters: // key - The key of the set. - // cursor - The cursor that points to the next iteration of results. A value of `"0"` indicates the start of the search. - // For Valkey 8.0 and above, negative cursors are treated like the initial cursor("0") instead of throwing an error. + // cursor - The cursor that points to the next iteration of results. A value of `"0"` indicates the start of the search. For Valkey 8.0 and above, negative cursors are treated like the initial cursor("0") instead of throwing an error. // // Return value: // An array of the cursor and the subset of the set held by `key`. The first element is always the `cursor` and @@ -368,8 +367,7 @@ type SetCommands interface { // // Parameters: // key - The key of the set. - // cursor - The cursor that points to the next iteration of results. A value of `"0"` indicates the start of the search. - // For Valkey 8.0 and above, negative cursors are treated like the initial cursor("0") instead of throwing an error. + // cursor - The cursor that points to the next iteration of results. A value of `"0"` indicates the start of the search. For Valkey 8.0 and above, negative cursors are treated like the initial cursor("0") instead of throwing an error. // options - [BaseScanOptions] // // Return value: