]> git.vpit.fr Git - perl/modules/Scope-Context.git/commitdiff
Fix an off-by-one description in POD
authorVincent Pit <vince@profvince.com>
Tue, 17 Mar 2015 13:44:04 +0000 (10:44 -0300)
committerVincent Pit <vince@profvince.com>
Tue, 17 Mar 2015 13:44:04 +0000 (10:44 -0300)
lib/Scope/Context.pm

index cd0d63067321cbd2f480427e728a25c9e6e1ecb4..6658c3cfe8596208bdb09fd4ccca799230192cbf 100644 (file)
@@ -365,7 +365,7 @@ sub up {
     my $sub_cxt = $cxt->sub($frames);
     my $sub_cxt = Scope::Context->sub;
 
-Returns a new L<Scope::Context> object pointing to the C<$frames>-th subroutine scope above the scope pointed by the invocant.
+Returns a new L<Scope::Context> object pointing to the C<$frames + 1>-th subroutine scope above the scope pointed by the invocant.
 
 This method can also be invoked as a class method, in which case it is equivalent to calling L</sub> on a L<Scope::Context> object for the current context.
 
@@ -409,7 +409,7 @@ sub sub {
     my $eval_cxt = $cxt->eval($frames);
     my $eval_cxt = Scope::Context->eval;
 
-Returns a new L<Scope::Context> object pointing to the C<$frames>-th C<eval> scope above the scope pointed by the invocant.
+Returns a new L<Scope::Context> object pointing to the C<$frames + 1>-th C<eval> scope above the scope pointed by the invocant.
 
 This method can also be invoked as a class method, in which case it is equivalent to calling L</eval> on a L<Scope::Context> object for the current context.