]> git.vpit.fr Git - perl/modules/Lexical-Types.git/commitdiff
POD verbatim paragraphs should fit into a terminal
authorVincent Pit <vince@profvince.com>
Fri, 23 Aug 2013 18:40:43 +0000 (15:40 -0300)
committerVincent Pit <vince@profvince.com>
Fri, 23 Aug 2013 18:40:43 +0000 (15:40 -0300)
lib/Lexical/Types.pm

index 642d2ce1d6937fa3c54c917f08e7e79f62c64551..a3b285af561977209e7b55048f89c2f578e81476 100644 (file)
@@ -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