]> git.vpit.fr Git - perl/modules/with.git/commitdiff
Remove trailing whitespace
authorVincent Pit <vince@profvince.com>
Fri, 23 Aug 2013 14:46:40 +0000 (11:46 -0300)
committerVincent Pit <vince@profvince.com>
Fri, 23 Aug 2013 14:46:40 +0000 (11:46 -0300)
lib/with.pm
samples/with.pl
t/10-with.t

index 54d00c3c4d548bb19a50040424292e6ab3ab7cf4..878f8f6e1fc30c3338814512e57c4a4b869ba3d1 100644 (file)
@@ -47,7 +47,7 @@ our $VERSION = '0.02';
      use with \$deuce;
      hlagh;        # Deuce::hlagh 1
      Pants::hlagh; # Pants::hlagh
+
      {
       use with \Deuce->new(2);
       hlagh;       # Deuce::hlagh 2
@@ -95,7 +95,7 @@ my $extractor = [
 
 my %skip;
 $skip{$_} = 1 for qw/my our local sub do eval goto return
-                     if else elsif unless given when or and 
+                     if else elsif unless given when or and
                      while until for foreach next redo last continue
                      eq ne lt gt le ge cmp
                      map grep system exec sort print say
@@ -315,7 +315,7 @@ When the script is executed, deferred calls first fetch the default object back
 A call will never be dispatched to a method whose name is one of :
 
     my our local sub do eval goto return
-    if else elsif unless given when or and 
+    if else elsif unless given when or and
     while until for foreach next redo last continue
     eq ne lt gt le ge cmp
     map grep system exec sort print say
index 045783b97ddc8bf09fc0d26f3001f95bb924d4a1..5b0937e0a989a95bf5dfd9f3a27c4bfe61378258 100755 (executable)
@@ -30,7 +30,7 @@ hlagh;         # Pants::hlagh
  use with \$deuce;
  hlagh;        # Deuce::hlagh 1
  main::hlagh;  # Pants::hlagh
+
  {
   use with \Deuce->new(2); # Constant blessed reference
   hlagh;       # Deuce::hlagh 2
index 4f6e34c6a0a99cc512705adb0d2a58b0d65e8bcf..3edaae79bfd3f015e59b3546d9604d0c146adb56 100644 (file)
@@ -40,9 +40,9 @@ foo 'main', 0;
   main::foo 'main', 2;
   my $ref = \&foo;
   $ref->('main', 2);
+
   no with;
-  foo 'main', 0; 
+  foo 'main', 0;
  }