From 5bb1ac0acfd2d46df77ca58c3ecadccf51d9bb6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mazurek?= Date: Fri, 9 Nov 2018 17:44:01 +0100 Subject: [PATCH] fixes small typo in README.md Hey, this fixes small typo in `README.md` in function parameters example for `getText`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a9c15f49..8cef0ef9 100644 --- a/README.md +++ b/README.md @@ -794,7 +794,7 @@ affect the precision of string matching: // Matching a string: getByText(container, 'Hello World') // full string match -getByText(container, 'llo Worl'), {exact: false} // substring match +getByText(container, 'llo Worl', {exact: false}) // substring match getByText(container, 'hello world', {exact: false}) // ignore case // Matching a regex: