Re: Storable doc patches
authorPhilip Newton <pne@cpan.org>
Thu, 9 May 2002 14:32:29 +0000 (16:32 +0200)
committerAbhijit Menon-Sen <ams@wiw.org>
Thu, 9 May 2002 12:42:12 +0000 (12:42 +0000)
   From: "Philip Newton" <Philip.Newton@gmx.net>
   Message-Id:

p4raw-id: //depot/perl@16521

ext/Storable/Storable.pm

index 7d91395b16615531810fdb6cc286785d77ec979f..664f6e7a6b7f000889249b77765582c9c29bafa5 100644 (file)
@@ -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.