diff --git a/src/content/6/en/part6d.md b/src/content/6/en/part6d.md
index 28cc0b2243c..a4043130296 100644
--- a/src/content/6/en/part6d.md
+++ b/src/content/6/en/part6d.md
@@ -344,7 +344,7 @@ const App = () => {
}
```
-So again, a mutation was created that invalidated the query notes so that the updated note is rendered correctly. Using mutations is easy, the method mutate receives a note as a parameter, the importance of which is been changed to the negation of the old value.
+So again, the mutation we created invalidates the notes query so that the updated note is rendered correctly. Using mutations is easy, the method mutate receives a note as a parameter, the importance of which has been changed to the negation of the old value.
The current code for the application is on [GitHub](https://github.com/fullstack-hy2020/query-notes/tree/part6-2) in the branch part6-2.