From 33aa01510d6f20953a29a525ef777462cace19c3 Mon Sep 17 00:00:00 2001 From: j0e axford Date: Sun, 11 Oct 2015 23:34:15 -0500 Subject: [PATCH] Change chp.regex to regex in all files build_html.pl fails to create html files with this error: Unknown link regex Replacing chp.regex with regex in these files corrects the problem: sections/autoload.pod sections/chapter_06.pod sections/implicit_ideas.pod sections/values.pod --- sections/autoload.pod | 2 +- sections/chapter_06.pod | 2 +- sections/implicit_ideas.pod | 2 +- sections/values.pod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sections/autoload.pod b/sections/autoload.pod index f39ccdac..cd5b5028 100644 --- a/sections/autoload.pod +++ b/sections/autoload.pod @@ -54,7 +54,7 @@ the package global C<$AUTOLOAD> (here, C): =end programlisting -Extract the method name with a regular expression (L): +Extract the method name with a regular expression (L): =begin programlisting diff --git a/sections/chapter_06.pod b/sections/chapter_06.pod index 973039c0..1a0266aa 100644 --- a/sections/chapter_06.pod +++ b/sections/chapter_06.pod @@ -1,6 +1,6 @@ =head0 Regular Expressions and Matching -Z +Z X X diff --git a/sections/implicit_ideas.pod b/sections/implicit_ideas.pod index 723a9b86..019ff936 100644 --- a/sections/implicit_ideas.pod +++ b/sections/implicit_ideas.pod @@ -71,7 +71,7 @@ X; substitution operator> X; match operator> X; transliteration operator> -Perl's regular expression facilities (L) default to C<$_> to match, +Perl's regular expression facilities (L) default to C<$_> to match, substitute, and transliterate: =begin programlisting diff --git a/sections/values.pod b/sections/values.pod index ab206c96..d42cf659 100644 --- a/sections/values.pod +++ b/sections/values.pod @@ -285,7 +285,7 @@ heard of bytes. Unicode strings and binary strings look superficially similar. Each has a C. Each supports standard string operations such as concatenation, -splicing, and regular expression processing (L). Any string which is +splicing, and regular expression processing (L). Any string which is not purely binary data is textual data, and thus should be a sequence of Unicode characters.