Skip to content

Commit b76d63e

Browse files
authored
Fix context provider terminology in createContext.md
1 parent c376d9c commit b76d63e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/content/reference/react/createContext.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ const ThemeContext = createContext('light');
4747

4848
---
4949

50-
### `SomeContext Provider` {/*provider*/}
50+
### `SomeContext` Provider {/*provider*/}
5151

52-
컴포넌트를 컨텍스트 제공자로 감싸서 이 컨텍스트의 값을 모든 내부 컴포넌트에 지정합니다.
52+
컴포넌트를 컨텍스트 제공자<sup>Provider</sup>로 감싸서 이 컨텍스트의 값을 모든 내부 컴포넌트에 지정합니다.
5353

5454
```js
5555
function App() {
@@ -65,7 +65,7 @@ function App() {
6565

6666
<Note>
6767

68-
React 19부터는 `<SomeContext>`제공자로 렌더링 할 수 있습니다.
68+
React 19부터는 `<SomeContext>`제공자<sup>Provider</sup>로 렌더링 할 수 있습니다.
6969

7070
오래된 React 버전은 `<SomeContext.Provider>`를 사용합니다.
7171

@@ -213,7 +213,7 @@ function App() {
213213

214214
## 문제 해결 {/*troubleshooting*/}
215215

216-
### 컨텍스트 값을 바꾸는 방법을 모르겠어요. {/*i-cant-find-a-way-to-change-the-context-value*/}
216+
### 컨텍스트 값을 바꾸는 방법을 모르겠어요 {/*i-cant-find-a-way-to-change-the-context-value*/}
217217

218218
이런 코드는 *기본* 컨텍스트 값을 지정합니다.
219219

0 commit comments

Comments
 (0)