From 320e9c762320dcece50666850feb07ae054d48f3 Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Tue, 15 Jun 2021 14:08:20 +0200 Subject: [PATCH] Replace misdescribed link with one matching its description The link, allegedly to the pcrepattern(3) man page, was in fact a link to a .txt file giving an over-view of the pcre library, but not describing the pattern syntax. Link, instead, to the actual HTML version of the pcrepattern(3) man page. Change-Id: I566fa5185b909bceb51dfe9f253c98f858f6a182 Reviewed-by: Giuseppe D'Angelo --- src/corelib/text/qregularexpression.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/corelib/text/qregularexpression.cpp b/src/corelib/text/qregularexpression.cpp index 72079c1996..d92c658cb8 100644 --- a/src/corelib/text/qregularexpression.cpp +++ b/src/corelib/text/qregularexpression.cpp @@ -105,9 +105,9 @@ QT_BEGIN_NAMESPACE \list \li \e {Mastering Regular Expressions} (Third Edition) by Jeffrey E. F. Friedl, ISBN 0-596-52812-4; - \li the \l{http://pcre.org/pcre.txt} {pcrepattern(3)} man page, describing - the pattern syntax supported by PCRE (the reference implementation of - Perl-compatible regular expressions); + \li the \l{https://pcre.org/original/doc/html/pcrepattern.html} + {pcrepattern(3)} man page, describing the pattern syntax supported by PCRE + (the reference implementation of Perl-compatible regular expressions); \li the \l{http://perldoc.perl.org/perlre.html} {Perl's regular expression documentation} and the \l{http://perldoc.perl.org/perlretut.html} {Perl's regular expression tutorial}.