From e02e31c8b9d854cd62cbe9799228f6e08e882773 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 5 Dec 2011 22:04:08 -0600 Subject: Sync with latest script --- src/tools/qregexp.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/tools/qregexp.cpp') diff --git a/src/tools/qregexp.cpp b/src/tools/qregexp.cpp index 167349136..133e04eb7 100644 --- a/src/tools/qregexp.cpp +++ b/src/tools/qregexp.cpp @@ -18,7 +18,7 @@ ** and the KDE Free TQt Foundation. ** ** Please review the following information to ensure GNU General -** Public Licensing retquirements will be met: +** Public Licensing requirements will be met: ** http://trolltech.com/products/qt/licenses/licensing/opensource/. ** If you are unsure which license is appropriate for your use, please ** review the following information: @@ -155,7 +155,7 @@ will fail. We'll start by writing a regexp to match integers in the range 0 - to 99. We will retquire at least one digit so we will start with + to 99. We will require at least one digit so we will start with [0-9]{1,1} which means match a digit exactly once. This regexp alone will match integers in the range 0 to 9. To match one or two digits we can increase the maximum number of occurrences so @@ -526,7 +526,7 @@ TQRegExp's quantifiers are the same as Perl's greedy quantifiers. Non-greedy matching cannot be applied to individual quantifiers, but can be applied to all the quantifiers in the pattern. For - example, to match the Perl regexp ro+?m retquires: + example, to match the Perl regexp ro+?m requires: \code TQRegExp rx( "ro+m" ); rx.setMinimal( TRUE ); -- cgit v1.2.1