Skip to content

Commit e2c3142

Browse files
Update src/content/docs/kv/api/write-key-value-pairs.mdx
Co-authored-by: Matt Silverlock <[email protected]>
1 parent 7ef82e4 commit e2c3142

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/kv/api/write-key-value-pairs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ export default {
209209
// Helper function to attempt a write to KV with retries
210210
const attemptWrite = async (i: number) => {
211211
return await retryWithBackoff(async () => {
212-
await env.simple_kv_hono_jsx.put(key, `Write attempt #${i}`);
212+
await env.YOUR_KV_NAMESPACE.put(key, `Write attempt #${i}`);
213213
return { attempt: i, success: true };
214214
});
215215
};

0 commit comments

Comments
 (0)