From 2771dcdb045f663d8bc304b4196651faab612e46 Mon Sep 17 00:00:00 2001 From: chromatic Date: Wed, 30 Jun 2010 09:14:32 -0700 Subject: [PATCH] POD fixes, reported by Mark Stratman (GH #22). --- CREDITS | 3 +++ sections/moose.pod | 2 +- sections/regular_expressions.pod | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CREDITS b/CREDITS index 47c606e3..309efaee 100644 --- a/CREDITS +++ b/CREDITS @@ -74,3 +74,6 @@ E: fwie@cpan.org N: Shawn M Moore E: sartak@bestpractical.com + +N: Mark A. Stratman +E: mark@sporkstorms.org diff --git a/sections/moose.pod b/sections/moose.pod index 4e76ef33..8b9ac1c1 100644 --- a/sections/moose.pod +++ b/sections/moose.pod @@ -128,7 +128,7 @@ By convention, invocants in Perl methods are lexical variables named C<$self>, but this is merely pervasive convention. The example implementation of C does not use the invocant, so it's irrelevant once method dispatch has completed. In that sense, C is like C; you can safely use -the name of the class C() as its invocant. This is a I: +the name of the class (C) as its invocant. This is a I: =begin programlisting diff --git a/sections/regular_expressions.pod b/sections/regular_expressions.pod index c021eb9e..90ba9faa 100644 --- a/sections/regular_expressions.pod +++ b/sections/regular_expressions.pod @@ -30,7 +30,7 @@ the regex: an indivisible unit of the pattern. The regex binding operator on its right to the string produced by the expression on its left. When evaluated in scalar context, a match evaluates to a true value if it succeeds. -The negated form of the binding operator C(!~) evalutes to false if the match +The negated form of the binding operator (C) evalutes to false if the match succeeds. =head2 The C Operator and Regex Combinations @@ -380,7 +380,7 @@ X If you're not fortunate enough to have a Unix word dictionary file available, the I (C<\b>) matches only at the boundary between -a word character (C<\w>) and a non-word character C(<\W>): +a word character (C<\w>) and a non-word character (C<\W>): =begin programlisting