From 8ce5b6cf3386cbbc6af4633c63d87c959a31f002 Mon Sep 17 00:00:00 2001 From: Pjotr Savitski Date: Thu, 23 Sep 2021 00:09:17 +0300 Subject: [PATCH] Update README.md Fixed a small issue with migration instructions for users of url-regex, which said that parens option was set to true by default, while it is really set to false. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a84544..fc61ef0 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ Unlike the deprecated and unmaintained package [url-regex][], we do a few things * We set `strict` to `false` by default ([url-regex][] had this set to `true`) * We added an `auth` option, which is set to `false` by default ([url-regex][] matches against Basic Authentication; had this set to `true` - however this is a deprecated behavior in Chromium). -* We added `parens` and `ipv6` options, which are set to `true` by default ([url-regex][] had `parens` set to `true` and `ipv6` was non-existent or set to `false` rather). +* We added `parens` and `ipv6` options, which are set to `false` and `true` by default ([url-regex][] had `parens` set to `true` and `ipv6` was non-existent or set to `false` rather). * We added an `apostrophe` option, which is set to `false` by default ([url-regex][] had this set to `true`). * We added a `trailingPeriod` option, which is set to `false` by default (which means matches won't contain trailing periods, whereas [url-regex][] had this set to `true`).