Skip to content

Commit 733911e

Browse files
authored
Fix keyword SEPARATOR typo in FT.CREATE command
1 parent 7d56a2c commit 733911e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

search_commands.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ func (c cmdable) FTCreate(ctx context.Context, index string, options *FTCreateOp
10041004
args = append(args, "WEIGHT", schema.Weight)
10051005
}
10061006
if schema.Seperator != "" {
1007-
args = append(args, "SEPERATOR", schema.Seperator)
1007+
args = append(args, "SEPARATOR", schema.Seperator)
10081008
}
10091009
if schema.CaseSensitive {
10101010
args = append(args, "CASESENSITIVE")

0 commit comments

Comments
 (0)