Skip to content

Commit 61888a2

Browse files
authored
👾 fix typo
1 parent 2efe0dc commit 61888a2

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head

1 file changed

+1
-1
lines changed

9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head/solution.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ As you can see, there's only lookbehind part in this regexp.
2626

2727
It works like this:
2828
- At every position in the text.
29-
- Check if it's preceeded by `pattern:<body.*?>`.
29+
- Check if it's preceded by `pattern:<body.*?>`.
3030
- If it's so then we have the match.
3131

3232
The tag `pattern:<body.*?>` won't be returned. The result of this regexp is literally an empty string, but it matches only at positions preceeded by `pattern:<body.*?>`.

0 commit comments

Comments
 (0)