From 2ddc2be4395a8b20ddfdff81fea78a9221abeb0f Mon Sep 17 00:00:00 2001 From: David Dougherty Date: Wed, 22 Jan 2025 07:20:53 -0800 Subject: [PATCH] Revert "DEV: fix code example on INCRBYFLOAT command page (#1056)" This reverts commit 8dc9aaf1da6f51eca88fabb51de968402e918f39. --- 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 d07841a42e..7a0ddc7f55 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 %}}