From 2b7c44f5cbbe1add5bc482729e97ee01c61fe00e Mon Sep 17 00:00:00 2001 From: Sona Kurazyan Date: Tue, 5 Jul 2022 16:28:19 +0200 Subject: [PATCH] QRegularExpression: fix a typo in docs Change-Id: Id7db7d0b833fc6b6000a04ff7ee8a5a7d164d7de Reviewed-by: Thiago Macieira (cherry picked from commit a6acb2453f4f6010283426e0c099145c22292146) Reviewed-by: Qt Cherry-pick Bot --- src/corelib/text/qregularexpression.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/corelib/text/qregularexpression.cpp b/src/corelib/text/qregularexpression.cpp index b4b0a3d47da..a9b7f999751 100644 --- a/src/corelib/text/qregularexpression.cpp +++ b/src/corelib/text/qregularexpression.cpp @@ -1853,7 +1853,7 @@ QString QRegularExpression::escape(QStringView str) By default, the returned regular expression is fully anchored. In other words, there is no need of calling anchoredPattern() again on the - result. To get an a regular expression that is not anchored, pass + result. To get a regular expression that is not anchored, pass UnanchoredWildcardConversion as the conversion \a options. This implementation follows closely the definition