Skip to content

Commit

Permalink
POD fixes, reported by Mark Stratman (GH chromatic#22).
Browse files Browse the repository at this point in the history
  • Loading branch information
chromatic committed Jun 30, 2010
1 parent 4b517e8 commit 2771dcd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CREDITS
Expand Up @@ -74,3 +74,6 @@ E: fwie@cpan.org

N: Shawn M Moore
E: sartak@bestpractical.com

N: Mark A. Stratman
E: mark@sporkstorms.org
2 changes: 1 addition & 1 deletion sections/moose.pod
Expand Up @@ -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<meow()> does not use the invocant, so it's irrelevant once method dispatch
has completed. In that sense, C<meow()> is like C<new()>; you can safely use
the name of the class C(<Cat>) as its invocant. This is a I<class method>:
the name of the class (C<Cat>) as its invocant. This is a I<class method>:

=begin programlisting

Expand Down
4 changes: 2 additions & 2 deletions sections/regular_expressions.pod
Expand Up @@ -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<qr//> Operator and Regex Combinations
Expand Down Expand Up @@ -380,7 +380,7 @@ X<word boundary metacharacter>

If you're not fortunate enough to have a Unix word dictionary file available,
the I<word boundary metacharacter> (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

Expand Down

0 comments on commit 2771dcd

Please sign in to comment.