diff options
author | Tom Christiansen <tchrist@perl.com> | 1998-06-13 16:19:32 -0600 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-15 01:37:12 +0000 |
commit | 5a964f204835a8014f4ba86fc91884cff958ac67 (patch) | |
tree | b1ad7153799ba133ce772012c9dc05ea615f1c6e /pod/perldsc.pod | |
parent | ad973f306c11e119dc3a8448590409962bde25db (diff) | |
download | perl-5a964f204835a8014f4ba86fc91884cff958ac67.tar.gz |
documentation update from tchrist
Message-Id: <199806140419.WAA20549@chthon.perl.com>
Subject: doc patches
p4raw-id: //depot/perl@1132
Diffstat (limited to 'pod/perldsc.pod')
-rw-r--r-- | pod/perldsc.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perldsc.pod b/pod/perldsc.pod index cd689e37bc..d0cc335736 100644 --- a/pod/perldsc.pod +++ b/pod/perldsc.pod @@ -64,8 +64,8 @@ sections on each of the following: =back -But for now, let's look at some of the general issues common to all -of these types of data structures. +But for now, let's look at general issues common to all +these types of data structures. =head1 REFERENCES @@ -461,7 +461,7 @@ types of data structures. $a cmp $b } keys %HoL ) { - print "$family: ", join(", ", sort @{ $HoL{$family}), "\n"; + print "$family: ", join(", ", sort @{ $HoL{$family} }), "\n"; } =head1 LISTS OF HASHES @@ -614,7 +614,7 @@ types of data structures. # append new members to an existing family %new_folks = ( wife => "wilma", - pet => "dino"; + pet => "dino", ); for $what (keys %new_folks) { |