diff options
author | Abhijit Menon-Sen <ams@wiw.org> | 2001-09-18 18:06:27 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-09-18 18:06:27 +0000 |
commit | 6facdfffe71025525d0728c47e940e0df82f9b65 (patch) | |
tree | 564cbff7eae63a67e291542144f48a38bb63d42a /ext/IO | |
parent | 12527e6c89dc3642bce883fbd5e6b9b48f5aef95 (diff) | |
download | perl-6facdfffe71025525d0728c47e940e0df82f9b65.tar.gz |
Deprecate != Depreciate.
p4raw-id: //depot/perl@12071
Diffstat (limited to 'ext/IO')
-rw-r--r-- | ext/IO/lib/IO/Handle.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Select.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/IO/lib/IO/Handle.pm b/ext/IO/lib/IO/Handle.pm index 03b47745ca..37aa99c7bf 100644 --- a/ext/IO/lib/IO/Handle.pm +++ b/ext/IO/lib/IO/Handle.pm @@ -595,7 +595,7 @@ sub constant { } -# so that flush.pl can be depriciated +# so that flush.pl can be deprecated sub printflush { my $io = shift; diff --git a/ext/IO/lib/IO/Select.pm b/ext/IO/lib/IO/Select.pm index bc5bf24c39..f556b024a8 100644 --- a/ext/IO/lib/IO/Select.pm +++ b/ext/IO/lib/IO/Select.pm @@ -131,7 +131,7 @@ sub has_exception sub has_error { - warnings::warn("Call to depreciated method 'has_error', use 'has_exception'") + warnings::warn("Call to deprecated method 'has_error', use 'has_exception'") if warnings::enabled(); goto &has_exception; } |