Skip to content

Commit 8dc9aaf

Browse files
authored
DEV: fix code example on INCRBYFLOAT command page (#1056)
1 parent 32314a0 commit 8dc9aaf

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)