Skip to content

Commit 130ca91

Browse files
Merge pull request #3270 from Uaitt/docs/fix-typo
docs(caching): fix typo
2 parents d93569e + 0d40c39 commit 130ca91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/techniques/caching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ await this.cacheManager.set('key', 'value');
5454

5555
> warning **Note** The in-memory cache storage can only store values of types that are supported by [the structured clone algorithm](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm#javascript_types).
5656
57-
You can manually specify a TTL (expiration time in miliseconds) for this specific key, as follows:
57+
You can manually specify a TTL (expiration time in milliseconds) for this specific key, as follows:
5858

5959
```typescript
6060
await this.cacheManager.set('key', 'value', 1000);

0 commit comments

Comments
 (0)