From 886a1d69c13ecb217badb1cfb63db1d32c662a90 Mon Sep 17 00:00:00 2001 From: "David W. Dougherty" Date: Tue, 14 Jan 2025 13:47:01 -0800 Subject: [PATCH] DEV: fix code example on INCRBYFLOAT command page --- content/commands/incrbyfloat/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/commands/incrbyfloat/index.md b/content/commands/incrbyfloat/index.md index 7a0ddc7f55..d07841a42e 100644 --- a/content/commands/incrbyfloat/index.md +++ b/content/commands/incrbyfloat/index.md @@ -81,11 +81,11 @@ regardless of the actual internal precision of the computation. ## Examples {{% redis-cli %}} -SET mykey 10.50 -INCRBYFLOAT mykey 0.1 -INCRBYFLOAT mykey -5 -SET mykey 5.0e3 -INCRBYFLOAT mykey 2.0e2 +SET mykey "10.50" +INCRBYFLOAT mykey "0.1" +INCRBYFLOAT mykey "-5" +SET mykey "5.0e3" +INCRBYFLOAT mykey "2.0e2" {{% /redis-cli %}}