From 9c97680e31c1f55c73585d7f5e2875d3976e2d2a Mon Sep 17 00:00:00 2001 From: Jeffrey Ryan Thalhammer Date: Tue, 24 Mar 2015 00:28:16 -0700 Subject: [PATCH] Fix mispelt variabled name. Should have run the tests, dummy. --- lib/App/Pinto/Command/look.pm | 7 +++---- lib/Pinto/Constants.pm | 4 ++-- t/lib/Pinto/Tester.pm | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/lib/App/Pinto/Command/look.pm b/lib/App/Pinto/Command/look.pm index e6079dff..55636acf 100644 --- a/lib/App/Pinto/Command/look.pm +++ b/lib/App/Pinto/Command/look.pm @@ -70,7 +70,7 @@ __END__ =head1 SYNOPSIS - pinto --root=REPOSITORY_ROOT look TARGET ... + pinto --root=REPOSITORY_ROOT look [OPTIONS] TARGET ... =head1 DESCRIPTION @@ -115,9 +115,8 @@ the C<--stack> option has no effect. =item C -Sets the path to the command Pinto will use for interactive shells (like with the -L command). If this is not set, Pinto defaults -to either C or C. +Sets the path to the command Pinto will use for the interactive shell. If +this is not set, Pinto defaults to either C or C. =back diff --git a/lib/Pinto/Constants.pm b/lib/Pinto/Constants.pm index 79289be1..19ee34a7 100644 --- a/lib/Pinto/Constants.pm +++ b/lib/Pinto/Constants.pm @@ -58,7 +58,7 @@ Readonly our @EXPORT_OK => qw( @PINTO_PREREQ_PHASES @PINTO_PREREQ_RELATIONS - @PINTO_ENVIRONMENT_VARIRABLES + @PINTO_ENVIRONMENT_VARIABLES ); Readonly our %EXPORT_TAGS => ( @@ -153,7 +153,7 @@ Readonly our @PINTO_PREREQ_RELATIONS => qw(requires suggests recommends); #------------------------------------------------------------------------------ -Readonly our @PINTO_ENVIRONMENT_VARIRABLES => qw( +Readonly our @PINTO_ENVIRONMENT_VARIABLES => qw( PINTO_AUTHOR_ID PINTO_DEBUG PINTO_DIFF_STYLE diff --git a/t/lib/Pinto/Tester.pm b/t/lib/Pinto/Tester.pm index 2594e2da..f90967e8 100644 --- a/t/lib/Pinto/Tester.pm +++ b/t/lib/Pinto/Tester.pm @@ -33,7 +33,7 @@ extends qw(Test::Builder::Module); BEGIN { # Clear any user settings - delete @ENV{@PINTO_ENVIRONMENT_VARS}; + delete @ENV{@PINTO_ENVIRONMENT_VARIABLES}; # So we don't prompt for commit messages $Pinto::Globals::is_interactive = 0;