Skip to content

Commit

Permalink
fix(README): typo in code example
Browse files Browse the repository at this point in the history
  • Loading branch information
eko committed Oct 15, 2019
1 parent 001344f commit bd0c5fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -126,7 +126,7 @@ redisClient := redis.NewClient(&redis.Options{Addr: "127.0.0.1:6379"})
// Initialize stores
ristrettoStore := store.NewRistretto(ristrettoCache, nil)
redisStore := store.NewRedis(redisClient, &cache.Optiobs{Expiration: 5*time.Second})
redisStore := store.NewRedis(redisClient, &cache.Options{Expiration: 5*time.Second})
// Initialize chained cache
cacheManager := cache.NewChain(
Expand Down

0 comments on commit bd0c5fb

Please sign in to comment.