File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -720,7 +720,7 @@ type HashCommands interface {
720720 // The Result[int64] value of `field` in the hash stored at `key` after the increment.
721721 //
722722 // Example:
723- // hsetResult , err := client.HSet("key", map[string]string{"field": "10"})
723+ // _ , err := client.HSet("key", map[string]string{"field": "10"})
724724 // hincrByResult, err := client.HIncrBy("key", "field", 1)
725725 // // hincrByResult.Value(): 11
726726 //
@@ -742,7 +742,7 @@ type HashCommands interface {
742742 // The Result[float64] value of `field` in the hash stored at `key` after the increment.
743743 //
744744 // Example:
745- // hsetResult , err := client.HSet("key", map[string]string{"field": "10"})
745+ // _ , err := client.HSet("key", map[string]string{"field": "10"})
746746 // hincrByFloatResult, err := client.HIncrByFloat("key", "field", 1.5)
747747 // // hincrByFloatResult.Value(): 11.5
748748 //
You can’t perform that action at this time.
0 commit comments