Skip to content

Commit 6345ce6

Browse files
authored
Revert "DEV: fix code example on INCRBYFLOAT command page (#1056)" (#1087)
This reverts commit 8dc9aaf.
1 parent 4ce749d commit 6345ce6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/commands/incrbyfloat/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ regardless of the actual internal precision of the computation.
8181
## Examples
8282

8383
{{% redis-cli %}}
84-
SET mykey "10.50"
85-
INCRBYFLOAT mykey "0.1"
86-
INCRBYFLOAT mykey "-5"
87-
SET mykey "5.0e3"
88-
INCRBYFLOAT mykey "2.0e2"
84+
SET mykey 10.50
85+
INCRBYFLOAT mykey 0.1
86+
INCRBYFLOAT mykey -5
87+
SET mykey 5.0e3
88+
INCRBYFLOAT mykey 2.0e2
8989
{{% /redis-cli %}}
9090

9191

0 commit comments

Comments
 (0)