summaryrefslogtreecommitdiff
path: root/ext/Storable/Storable.pm
diff options
context:
space:
mode:
authorPhilip Newton <pne@cpan.org>2002-05-09 16:32:29 +0200
committerAbhijit Menon-Sen <ams@wiw.org>2002-05-09 12:42:12 +0000
commit6fe6778b56c33a355a09b774f5bf0c4986a3341a (patch)
treee5056e61d293c3024ee4d737e39780c445fd14fd /ext/Storable/Storable.pm
parentde108802002fd7758d661282179febed13a1e304 (diff)
downloadperl-6fe6778b56c33a355a09b774f5bf0c4986a3341a.tar.gz
Re: Storable doc patches
From: "Philip Newton" <Philip.Newton@gmx.net> Message-Id: p4raw-id: //depot/perl@16521
Diffstat (limited to 'ext/Storable/Storable.pm')
-rw-r--r--ext/Storable/Storable.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/Storable/Storable.pm b/ext/Storable/Storable.pm
index 7d91395b16..664f6e7a6b 100644
--- a/ext/Storable/Storable.pm
+++ b/ext/Storable/Storable.pm
@@ -843,11 +843,11 @@ reference that was used for the key originally to record the value into
the hash table), it will work because both references stringify to the
same string.
-It won't work across a C<store> and C<retrieve> operations, however,
-because the addresses in the retrieved objects, which are part of
-the stringified references, will probably differ from the original
-addresses. The topology of your structure is preserved, but not hidden
-semantics like those.
+It won't work across a sequence of C<store> and C<retrieve> operations,
+however, because the addresses in the retrieved objects, which are
+part of the stringified references, will probably differ from the
+original addresses. The topology of your structure is preserved,
+but not hidden semantics like those.
On platforms where it matters, be sure to call C<binmode()> on the
descriptors that you pass to Storable functions.