From 0c2774894a1da8b8861fbe363c05edb25576f7f8 Mon Sep 17 00:00:00 2001 From: Alex Chan Date: Tue, 5 Jul 2022 18:07:24 +0100 Subject: [PATCH] doc: fix spelling typo of "insignificant" PR #839 --- regex-syntax/src/ast/parse.rs | 2 +- regex-syntax/src/parser.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/regex-syntax/src/ast/parse.rs b/regex-syntax/src/ast/parse.rs index 9824661c9..579bee8bf 100644 --- a/regex-syntax/src/ast/parse.rs +++ b/regex-syntax/src/ast/parse.rs @@ -202,7 +202,7 @@ impl ParserBuilder { /// Enable verbose mode in the regular expression. /// - /// When enabled, verbose mode permits insigificant whitespace in many + /// When enabled, verbose mode permits insignificant whitespace in many /// places in the regular expression, as well as comments. Comments are /// started using `#` and continue until the end of the line. /// diff --git a/regex-syntax/src/parser.rs b/regex-syntax/src/parser.rs index a5ee524a8..ded95b280 100644 --- a/regex-syntax/src/parser.rs +++ b/regex-syntax/src/parser.rs @@ -96,7 +96,7 @@ impl ParserBuilder { /// Enable verbose mode in the regular expression. /// - /// When enabled, verbose mode permits insigificant whitespace in many + /// When enabled, verbose mode permits insignificant whitespace in many /// places in the regular expression, as well as comments. Comments are /// started using `#` and continue until the end of the line. ///