Skip to content

Commit 51c2ebf

Browse files
authored
docs: fix incorrect package name in code example (#849)
Signed-off-by: hono0130 <[email protected]>
1 parent e6dc8b8 commit 51c2ebf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ If you need to reference them afterward (e.g. to retrieve the key), use the `Pin
135135

136136
```golang
137137
// Create pinned commands to preserve them from being recycled
138-
cmds := make(valkey.Commands, 0, 10)
138+
cmds := make(rueidis.Commands, 0, 10)
139139
for i := 0; i < 10; i++ {
140140
cmds = append(cmds, client.B().Get().Key(strconv.Itoa(i)).Build().Pin())
141141
}

0 commit comments

Comments
 (0)