From 1e284b8b83ead50620d2e7f3d7a76e811587cd07 Mon Sep 17 00:00:00 2001 From: alevmo <54253179+alevmo@users.noreply.github.com> Date: Sun, 18 Aug 2019 20:54:52 -0400 Subject: [PATCH] Update article.md --- 9-regular-expressions/02-regexp-methods/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/9-regular-expressions/02-regexp-methods/article.md b/9-regular-expressions/02-regexp-methods/article.md index f66a9c79..d1c36352 100644 --- a/9-regular-expressions/02-regexp-methods/article.md +++ b/9-regular-expressions/02-regexp-methods/article.md @@ -2,8 +2,8 @@ There are two sets of methods to deal with regular expressions. -1. First, regular expressions are objects of the built-in [RegExp](mdn:js/RegExp) class, it provides many methods. -2. Besides that, there are methods in regular strings can work with regexps. +1. First, regular expressions are objects of the built-in [RegExp](mdn:js/RegExp) class, which provides many methods. +2. Additionally, there are methods in regular strings that can work with regexps. ## Recipes