Skip to content

Commit

Permalink
redid null comment
Browse files Browse the repository at this point in the history
  • Loading branch information
cyip10 authored Jul 18, 2024
1 parent 9455257 commit cf2f355
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion node/src/BaseClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,8 @@ export class BaseClient {
* const result = client.getdel("key");
* console.log(result); // Output: 'value'
*
* const value = client.getdel("key"); // value is null
* const value = client.getdel("key");
* console.log(value); // Output: null response
* ```
*/
public getdel(key: string): Promise<string | null> {
Expand Down

0 comments on commit cf2f355

Please sign in to comment.