From d4fc4292765ae1b1d600a9691cbff1325dd7d48f Mon Sep 17 00:00:00 2001 From: Codex Date: Sun, 19 Apr 2026 10:51:49 +0800 Subject: [PATCH] docs: fix "commmand" typo in node-redis migration guide --- content/develop/clients/nodejs/migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/develop/clients/nodejs/migration.md b/content/develop/clients/nodejs/migration.md index 4406796b62..099a558674 100644 --- a/content/develop/clients/nodejs/migration.md +++ b/content/develop/clients/nodejs/migration.md @@ -148,7 +148,7 @@ client.hset('user', 'name', 'Bob', 'age', 20, 'description', 'I am a programmer' ``` `node-redis` uses predefined formats for command arguments. These include specific -classes for commmand options that generally don't correspond to the syntax +classes for command options that generally don't correspond to the syntax of the CLI command. Internally, `node-redis` constructs the correct command using the method arguments you pass: