Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change chp.regex to regex in all files #250

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sections/autoload.pod
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ the package global C<$AUTOLOAD> (here, C<main::bake_pie>):

=end programlisting

Extract the method name with a regular expression (L<chp.regex>):
Extract the method name with a regular expression (L<regex>):

=begin programlisting

Expand Down
2 changes: 1 addition & 1 deletion sections/chapter_06.pod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
=head0 Regular Expressions and Matching

Z<chp.regex>
Z<regex>

X<regular expressions>
X<regex>
Expand Down
2 changes: 1 addition & 1 deletion sections/implicit_ideas.pod
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ X<C<s///>; substitution operator>
X<C<m//>; match operator>
X<C<tr//>; transliteration operator>

Perl's regular expression facilities (L<chp.regex>) default to C<$_> to match,
Perl's regular expression facilities (L<regex>) default to C<$_> to match,
substitute, and transliterate:

=begin programlisting
Expand Down
2 changes: 1 addition & 1 deletion sections/values.pod
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ heard of bytes.

Unicode strings and binary strings look superficially similar. Each has a
C<length()>. Each supports standard string operations such as concatenation,
splicing, and regular expression processing (L<chp.regex>). Any string which is
splicing, and regular expression processing (L<regex>). Any string which is
not purely binary data is textual data, and thus should be a sequence of
Unicode characters.

Expand Down