Skip to content

Commit

Permalink
docs: fix typo in cache.md (#1105)
Browse files Browse the repository at this point in the history
  • Loading branch information
devwqc authored Dec 2, 2024
1 parent 61caa2f commit a7265ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/content/reference/react/cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,11 @@ async function MinimalWeatherCard({city}) {
}
```

`AnimatedWeatherCard``MinimalWeatherCard`가 같은 <CodeStep step={1}>도시</CodeStep>를 렌더링할 때, <CodeStep step={2}>메모화된 함수</CodeStep>로 부터 같은 데이터의 스냅샷을 받게 됩니다.
`AnimatedWeatherCard``MinimalWeatherCard`가 같은 <CodeStep step={1}>city</CodeStep>를 렌더링할 때, <CodeStep step={2}>메모화된 함수</CodeStep>로 부터 같은 데이터의 스냅샷을 받게 됩니다.

`AnimatedWeatherCard``MinimalWeatherCard`가 다른 <CodeStep step={1}>도시</CodeStep>를 <CodeStep step={2}>`getTemperature`</CodeStep>의 인자로 받게 된다면, `fetchTemperature`는 두 번 호출되고 호출마다 다른 데이터를 받게 됩니다.
`AnimatedWeatherCard``MinimalWeatherCard`가 다른 <CodeStep step={1}>city</CodeStep>를 <CodeStep step={2}>`getTemperature`</CodeStep>의 인자로 받게 된다면, `fetchTemperature`는 두 번 호출되고 호출마다 다른 데이터를 받게 됩니다.

<CodeStep step={1}>도시</CodeStep>가 캐시 키처럼 동작하게 됩니다.
<CodeStep step={1}>city</CodeStep>가 캐시 키처럼 동작하게 됩니다.

<Note>

Expand Down

0 comments on commit a7265ef

Please sign in to comment.