docs: simplify cache usage example

This commit is contained in:
TonyRL 2023-05-17 16:48:45 +00:00
parent 9a83292ed3
commit ecfeafbff7
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@
const y = '3';
return y;
})
console.log(x); // 缓存未命中: '2', 缓存命中: 'value'
console.log(x); // 缓存未命中: '2', 缓存命中: '1'
console.log(z): // '3'
```