Skip to content

Fix typo in redis docs #1795

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/commands/hexpire.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ In this case, the time to live is _updated_ to the new value.
redis> HEXPIRE no-key 20 NX FIELDS 2 field1 field2
(nil)
redis> HSET mykey field1 "hello" field2 "world"
(integer 2)
(integer) 2
redis> HEXPIRE mykey 10 FIELDS 3 field1 field2 field3
1) (integer) 1
2) (integer) 1
Expand Down
2 changes: 1 addition & 1 deletion content/commands/hexpireat.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ The `NS`, `XX`, `GT`, and `LT` options are mutually exclusive.

```
redis> HSET mykey field1 "hello" field2 "world"
(integer 2)
(integer) 2
redis> HEXPIREAT mykey 1715704971 FIELDS 2 field1 field2
1) (integer) 1
2) (integer) 1
Expand Down
2 changes: 1 addition & 1 deletion content/commands/hpersist.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ is associated).

```
redis> HSET mykey field1 "hello" field2 "world"
(integer 2)
(integer) 2
redis> HEXPIRE mykey 300 FIELDS 2 field1 field2
1) (integer) 1
2) (integer) 1
Expand Down
2 changes: 1 addition & 1 deletion content/commands/hpexpire.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ The `NX`, `XX`, `GT`, and `LT` options are mutually exclusive.

```
redis> HSET mykey field1 "hello" field2 "world"
(integer 2)
(integer) 2
redis> HPEXPIRE mykey 2000 FIELDS 2 field1 field2
1) (integer) 1
2) (integer) 1
Expand Down
2 changes: 1 addition & 1 deletion content/commands/hpexpireat.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ The `NX`, `XX`, `GT`, and `LT` options are mutually exclusive.

```
redis> HSET mykey field1 "hello" field2 "world"
(integer 2)
(integer) 2
redis> HPEXPIREAT mykey 1715704971000 FIELDS 2 field1 field2
1) (integer) 1
2) (integer) 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ To remove a specific suggestion from the dictionary, use the `FT.SUGDEL` command

```
redis> FT.SUGDEL autocomplete "help me"
(integer 1)
(integer) 1
```

After deletion, running `FT.SUGGET autocomplete hell FUZZY` will no longer return "help me".
Expand Down
Loading