@@ -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 )))
@@ -436,7 +436,7 @@ var _ = Describe("RediSearch commands Resp 2", Label("search"), func() {
436436 WaitForIndexing (client , "idx1" )
437437
438438 client .HSet (ctx , "search" , "title" , "RediSearch" ,
439- "body" , "Redisearch impements a search engine on top of redis" ,
439+ "body" , "Redisearch implements a search engine on top of redis" ,
440440 "parent" , "redis" ,
441441 "random_num" , 10 )
442442 client .HSet (ctx , "ai" , "title" , "RedisAI" ,
0 commit comments