Skip to content

Commit

Permalink
Typo fix.
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Apr 10, 2024
1 parent 7906e36 commit 163859d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ public interface StringBaseCommands {
* @return The length of the string stored at <code>key</code> after it was modified.
* @example
* <pre>{@code
* long len = client.setrange("key", 6, "GLIDE").get();
* assert len == 11L; // Wew key was created with length of 11 symbols
* Long len = client.setrange("key", 6, "GLIDE").get();
* assert len == 11L; // New key was created with length of 11 symbols
* String value = client.get("key").get();
* assert value.equals("\0\0\0\0\0\0GLIDE"); // The string was padded with zero bytes
* }</pre>
Expand Down

0 comments on commit 163859d

Please sign in to comment.