Skip to content

Commit f3137c3

Browse files
authored
docs: minor grammar correction
`a expensive` should be `an expensive`
1 parent b092216 commit f3137c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/reference/react/cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ All mentioned APIs offer memoization but the difference is what they're intended
321321

322322
#### `useMemo` {/*deep-dive-use-memo*/}
323323

324-
In general, you should use [`useMemo`](/reference/react/useMemo) for caching a expensive computation in a Client Component across renders. As an example, to memoize a transformation of data within a component.
324+
In general, you should use [`useMemo`](/reference/react/useMemo) for caching an expensive computation in a Client Component across renders. As an example, to memoize a transformation of data within a component.
325325

326326
```jsx {4}
327327
'use client';

0 commit comments

Comments
 (0)