summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-01-18 13:34:24 -0800
committerFather Chrysostomos <sprout@cpan.org>2012-01-18 13:45:23 -0800
commit70f37c6e57ea5e5e32ae29272de2691802522ddb (patch)
treeb9be574fad9ebe2596f92d6f05ce187390bfe56f /lib
parent406f8c258486bcc700f9b7254f1e1bee5734083f (diff)
downloadperl-70f37c6e57ea5e5e32ae29272de2691802522ddb.tar.gz
overload.pm: Smaller indents for long lines
Diffstat (limited to 'lib')
-rw-r--r--lib/overload.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/overload.pm b/lib/overload.pm
index 749f731d1b..90463b307e 100644
--- a/lib/overload.pm
+++ b/lib/overload.pm
@@ -1043,12 +1043,12 @@ Note that it is probably meaningless to call the functions overload::constant()
and overload::remove_constant() from anywhere but import() and unimport() methods.
From these methods they may be called as
- sub import {
- shift;
- return unless @_;
- die "unknown import: @_" unless @_ == 1 and $_[0] eq ':constant';
- overload::constant integer => sub {Math::BigInt->new(shift)};
- }
+ sub import {
+ shift;
+ return unless @_;
+ die "unknown import: @_" unless @_ == 1 and $_[0] eq ':constant';
+ overload::constant integer => sub {Math::BigInt->new(shift)};
+ }
=head1 IMPLEMENTATION