From d763f89e25f1c727bccd85e0aaf03641aede36dd Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Wed, 17 Feb 2021 12:08:40 +1300 Subject: [PATCH] docs(expect-expect): fix typo (#761) --- docs/rules/expect-expect.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/expect-expect.md b/docs/rules/expect-expect.md index 135b73512..3f095c0be 100644 --- a/docs/rules/expect-expect.md +++ b/docs/rules/expect-expect.md @@ -74,7 +74,7 @@ test('returns sum', () => { }); ``` -Since the string is compiled into aa regular expression, you'll need to escape +Since the string is compiled into a regular expression, you'll need to escape special characters such as `$` with a double backslash: ```js