]> git.vpit.fr Git - perl/modules/Scope-Context.git/commitdiff
Double equal sign please
authorVincent Pit <vince@profvince.com>
Tue, 17 Mar 2015 13:44:38 +0000 (10:44 -0300)
committerVincent Pit <vince@profvince.com>
Tue, 17 Mar 2015 13:44:38 +0000 (10:44 -0300)
lib/Scope/Context.pm

index 6658c3cfe8596208bdb09fd4ccca799230192cbf..70f68c008d6309196e7b8ed0f4a6044b38595833 100644 (file)
@@ -333,7 +333,7 @@ If omitted, C<$frames> defaults to C<1>.
     sub {
      {
       {
-       my $up = Scope::Context->new->up(2); # = Scope::Context->up(2)
+       my $up = Scope::Context->new->up(2); # == Scope::Context->up(2)
        # $up points two contextes above this one, which is the sub.
       }
      }
@@ -378,7 +378,7 @@ If omitted, C<$frames> defaults to C<0>, which results in the closest sub enclos
     }
 
     sub inner {
-     my $sub = Scope::Context->new->sub(1); # = Scope::Context->sub(1)
+     my $sub = Scope::Context->new->sub(1); # == Scope::Context->sub(1)
      # $sub points to the context for the outer() sub.
     }
 
@@ -417,7 +417,7 @@ If omitted, C<$frames> defaults to C<0>, which results in the closest eval enclo
 
     eval {
      sub {
-      my $eval = Scope::Context->new->eval; # = Scope::Context->eval
+      my $eval = Scope::Context->new->eval; # == Scope::Context->eval
       # $eval points to the eval context.
      }->()
     }