diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-11-29 10:48:39 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-11-29 10:48:39 +0000 |
commit | 57668c4d7bc86e7fbc7116d331d73409d0afeaa8 (patch) | |
tree | 0b1ba090d0b13f7d676e271958c0464d3c477b33 /pod | |
parent | 5f2d631d316df23ef6c85417f986072d5c8e5834 (diff) | |
download | perl-57668c4d7bc86e7fbc7116d331d73409d0afeaa8.tar.gz |
backout change#2334
p4raw-link: @2334 on //depot/perl: 60ad88b8fe9480f2f097fca26f4f3a9f83a4f830
p4raw-id: //depot/perl@2383
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlfunc.pod | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 370353bb2a..d91cb04428 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -454,9 +454,10 @@ Always use the two-argument version if the function doing the blessing might be inherited by a derived class. See L<perltoot> and L<perlobj> for more about the blessing (and blessings) of objects. -Creating objects in lowercased CLASSNAMEs should be avoided. Such -namespaces should be considered reserved for Perl pragmata and objects -that may be created to implement internal operations. +Consider always blessing objects in CLASSNAMEs that are mixed case. +Namespaces with all lowercase names are considered reserved for Perl +pragmata. Builtin types have all uppercase names, so to prevent confusion, +it is best to avoid such package names as well. See L<perlmod/"Perl Modules">. |