diff --git a/9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head/solution.md b/9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head/solution.md
index f2bbd3f5..b1d377d3 100644
--- a/9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head/solution.md
+++ b/9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head/solution.md
@@ -31,6 +31,6 @@ It works like this:
The tag `pattern:
` won't be returned. The result of this regexp is literally an empty string, but it matches only at positions preceeded by `pattern:`.
-So we replaces the "empty line", preceeded by `pattern:`, with `Hello
`. That's the insertion after ``.
+So it replaces the "empty line", preceeded by `pattern:`, with `Hello
`. That's the insertion after ``.
P.S. Regexp flags, such as `pattern:s` and `pattern:i` can also be useful: `pattern://si`. The `pattern:s` flag makes the dot `pattern:.` match a newline character, and `pattern:i` flag makes `pattern:` also match `match:` case-insensitively.