Skip to content

Commit

Permalink
fix: example multichaching in README
Browse files Browse the repository at this point in the history
  • Loading branch information
zzau13 committed Nov 2, 2022
1 parent 7f76e54 commit e01f780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -84,7 +84,7 @@ You can use your own custom store by creating one with the same API as the built
```typescript
import { multiCaching } from 'cache-manager';

const multiCache = await multiCaching([memoryCache, someOtherCache]);
const multiCache = multiCaching([memoryCache, someOtherCache]);
const userId2 = 456;
const key2 = 'user_' + userId;
const ttl = 5;
Expand Down

0 comments on commit e01f780

Please sign in to comment.