summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-01-17 09:37:58 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-01-17 09:37:58 +0000
commitdb696efea25f0c81b9eb96d951ffd25ea6298ff8 (patch)
treead5693845da4660072ffab4a5d527711360404cc
parent63abd72361fb73532e62d9d6ca4c48236f714f59 (diff)
downloadperl-db696efea25f0c81b9eb96d951ffd25ea6298ff8.tar.gz
documentation in change#2596 is not quite right; fix it
p4raw-link: @2596 on //depot/cfgperl: b0fffe302ebecea108e16fbf94d910405cdc8714 p4raw-id: //depot/perl@2625
-rw-r--r--lib/Math/BigFloat.pm2
-rw-r--r--pod/perlguts.pod9
2 files changed, 5 insertions, 6 deletions
diff --git a/lib/Math/BigFloat.pm b/lib/Math/BigFloat.pm
index 03bc2f4e27..3f394fbf71 100644
--- a/lib/Math/BigFloat.pm
+++ b/lib/Math/BigFloat.pm
@@ -301,7 +301,7 @@ floats as
=item number format
canonical strings have the form /[+-]\d+E[+-]\d+/ . Input values can
-have imbedded whitespace.
+have embedded whitespace.
=item Error returns 'NaN'
diff --git a/pod/perlguts.pod b/pod/perlguts.pod
index 9b16a8a026..08da5975aa 100644
--- a/pod/perlguts.pod
+++ b/pod/perlguts.pod
@@ -2174,11 +2174,10 @@ Do magic after a value is assigned to the SV. See C<sv_magic>.
=item modglobal
C<modglobal> is a general purpose, interpreter global HV for use by
-extensions. While it could hold extension specific information, it is
-meant primarily for information that needs to be shared between
-extensions. Moreover, while it could be used for any kind of
-information, it is meant for information that should be not accessible
-in the usual way from the perl symbol table.
+extensions that need to keep information on a per-interpreter basis.
+In a pinch, it can also be used as a symbol table for extensions
+to share data among each other. It is a good idea to use keys
+prefixed by the package name of the extension that owns the data.
=item Move