From 35529800f24f98dfd524a0d57802c91a39c7fb85 Mon Sep 17 00:00:00 2001
From: Ghassen Faidi <93406112+elfaidi-ghassen@users.noreply.github.com>
Date: Tue, 24 Feb 2026 15:52:58 +0100
Subject: [PATCH] fix: correct grammar and improve flow in mutations section
---
src/content/6/en/part6d.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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.