From 642af3f9a729b4e9996197c62b13f5f7eb159422 Mon Sep 17 00:00:00 2001 From: davhojt Date: Mon, 2 May 2022 14:40:49 +0100 Subject: [PATCH] docs(its-a-match): correct grammar --- subjects/its-a-match/README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/subjects/its-a-match/README.md b/subjects/its-a-match/README.md index fe043e7e..cc67b316 100644 --- a/subjects/its-a-match/README.md +++ b/subjects/its-a-match/README.md @@ -2,19 +2,21 @@ ### Instructions -Create 4 regular expression in variables: +Have you been been pondering over the etymology of `grep`? -- `normal` matches with the expression 'hi'. +Create 4 regular expression variables: -- `begin` matches with the expression 'hi', - only when it is in the beginning. +- `normal`: matches with the expression 'hi'. -- `end` matches with the expression 'hi', - only when it is in the end. +- `begin`: matches with the expression 'hi', + only when it is at the beginning. -- `beginEnd` matches with the expression 'hi', +- `end`: matches with the expression 'hi', + only when it is at the end. + +- `beginEnd`: matches with the expression 'hi', only when it is exactly hi. ### Notions -- [github.com/ziishaned/learn-regex#28-anchors](https://github.com/ziishaned/learn-regex#28-anchors) +- [RegEx Anchors](https://github.com/ziishaned/learn-regex#28-anchors)