diff --git a/src/content/6/en/part6c.md b/src/content/6/en/part6c.md
index 7dbb41ea82..01d75c3d35 100644
--- a/src/content/6/en/part6c.md
+++ b/src/content/6/en/part6c.md
@@ -697,7 +697,7 @@ React's built-in [Context API](https://react.dev/learn/passing-data-deeply-with-
Let's now create a context in the application that stores the counter state management.
-A context is created using React's [createContext](https://react.dev/reference/react/createContext) hook. Let's create the context in a file src/CounterContext.jsx:
+A context is created using React's [createContext](https://react.dev/reference/react/createContext) factory function. Let's create the context in a file src/CounterContext.jsx:
```js
import { createContext } from 'react'