@@ -136,7 +136,7 @@ var _ = Describe("RediSearch commands Resp 2", Label("search"), func() {
136
136
Expect (err ).NotTo (HaveOccurred ())
137
137
Expect (val ).To (BeEquivalentTo ("OK" ))
138
138
WaitForIndexing (client , "txt" )
139
- client .HSet (ctx , "doc1" , "title" , "RediSearch" , "body" , "Redisearch impements a search engine on top of redis" )
139
+ client .HSet (ctx , "doc1" , "title" , "RediSearch" , "body" , "Redisearch implements a search engine on top of redis" )
140
140
res1 , err := client .FTSearchWithArgs (ctx , "txt" , "search engine" , & redis.FTSearchOptions {NoContent : true , Verbatim : true , LimitOffset : 0 , Limit : 5 }).Result ()
141
141
Expect (err ).NotTo (HaveOccurred ())
142
142
Expect (res1 .Total ).To (BeEquivalentTo (int64 (1 )))
@@ -482,7 +482,7 @@ var _ = Describe("RediSearch commands Resp 2", Label("search"), func() {
482
482
WaitForIndexing (client , "idx1" )
483
483
484
484
client .HSet (ctx , "search" , "title" , "RediSearch" ,
485
- "body" , "Redisearch impements a search engine on top of redis" ,
485
+ "body" , "Redisearch implements a search engine on top of redis" ,
486
486
"parent" , "redis" ,
487
487
"random_num" , 10 )
488
488
client .HSet (ctx , "ai" , "title" , "RedisAI" ,
0 commit comments