Skip to content

Commit

Permalink
Correct variable name in the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasbuchala committed Jan 4, 2017
1 parent 7a4c5f6 commit d1bb1cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Type/Params.pm
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ example from the SYNOPSIS could be rewritten as:
sub deposit_monies
{
$deposit_monies_check ||= compile( Str, Str, slurpy ArrayRef[Num] );
my ($sort_code, $account_number, $monies) = $check->(@_);
my ($sort_code, $account_number, $monies) = $deposit_monies_check->(@_);
...;
}
Expand Down

0 comments on commit d1bb1cb

Please sign in to comment.