diff --git a/src/content/5/en/part5b.md b/src/content/5/en/part5b.md
index abc37d6d68..d13f2b9bfc 100644
--- a/src/content/5/en/part5b.md
+++ b/src/content/5/en/part5b.md
@@ -383,7 +383,7 @@ const App = () => {
}
```
-The [useRef](https://react.dev/reference/react/useRef) hook is used to create a noteFormRef reference, that is assigned to the Togglable component containing the creation note form. The noteFormRef variable acts as a reference to the component. This hook ensures the same reference (ref) that is kept throughout re-renders of the component.
+The [useRef](https://react.dev/reference/react/useRef) hook is used to create a noteFormRef reference, that is assigned to the Togglable component containing the creation note form. The noteFormRef variable acts as a reference to the component. This hook ensures that the same reference (ref) is kept throughout re-renders of the component.
We also make the following changes to the Togglable component: