From 1ecc79bb56ac2fdccaf5d29c635c8c7f6575777d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Wed, 28 Jul 2021 23:38:27 +0200 Subject: [PATCH] Fix superfluous uppercase C in matcher docs --- docs/matchers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/matchers.md b/docs/matchers.md index 6ee0c31f..7721bf81 100644 --- a/docs/matchers.md +++ b/docs/matchers.md @@ -99,7 +99,7 @@ somewhere inside it. The `Equals` matcher matches a string if (and only if) the argument string is equal to `str`. -Finally, the `Matches` matcher performs an ECMASCript regex match using +Finally, the `Matches` matcher performs an ECMAScript regex match using `str` against the argument string. It is important to know that the match is performed against the string as a whole, meaning that the regex `"abc"` will not match input string `"abcd"`. To match