@@ -136,7 +136,7 @@ var _ = Describe("RediSearch commands Resp 2", Label("search"), func() {
136136 Expect (err ).NotTo (HaveOccurred ())
137137 Expect (val ).To (BeEquivalentTo ("OK" ))
138138 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" )
140140 res1 , err := client .FTSearchWithArgs (ctx , "txt" , "search engine" , & redis.FTSearchOptions {NoContent : true , Verbatim : true , LimitOffset : 0 , Limit : 5 }).Result ()
141141 Expect (err ).NotTo (HaveOccurred ())
142142 Expect (res1 .Total ).To (BeEquivalentTo (int64 (1 )))
@@ -482,7 +482,7 @@ var _ = Describe("RediSearch commands Resp 2", Label("search"), func() {
482482 WaitForIndexing (client , "idx1" )
483483
484484 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" ,
486486 "parent" , "redis" ,
487487 "random_num" , 10 )
488488 client .HSet (ctx , "ai" , "title" , "RedisAI" ,
0 commit comments