From: Vincent Pit Date: Fri, 23 Aug 2013 18:40:43 +0000 (-0300) Subject: POD verbatim paragraphs should fit into a terminal X-Git-Tag: v0.13~21 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=46563a4451087c17e95a7ec9d33eb7ff0cc674d4 POD verbatim paragraphs should fit into a terminal --- diff --git a/lib/Lexical/Types.pm b/lib/Lexical/Types.pm index 642d2ce..a3b285a 100644 --- a/lib/Lexical/Types.pm +++ b/lib/Lexical/Types.pm @@ -114,7 +114,9 @@ If the value given is a code reference C<$mangler>, it will be called at compile either an empty list, in which case the current typed lexical definition will be skipped (thus it won't be altered to trigger a run-time hook) ; - use Lexical::Types as => sub { return $_[0] =~ /Str/ ? @_ : () }; + use Lexical::Types as => sub { + return $_[0] =~ /Str/ ? @_ : () + }; my Str $y; # calls Str->TYPEDSCALAR my Int $x; # nothing special