Author: bacek
Date: 2009-02-23 21:21:32 +0100 (Mon, 23 Feb 2009)
New Revision: 25501

Modified:
   docs/Perl6/Spec/S32-setting-library/Containers.pod
Log:
[spec] Fix typo in map example.

Modified: docs/Perl6/Spec/S32-setting-library/Containers.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/Containers.pod  2009-02-23 17:49:28 UTC 
(rev 25500)
+++ docs/Perl6/Spec/S32-setting-library/Containers.pod  2009-02-23 20:21:32 UTC 
(rev 25501)
@@ -371,7 +371,7 @@
 
 Here is an example of its use:
 
- @addresses = map { %addresses_by_name<$_> }, @names;
+ @addresses = map { %addresses_by_name{$_} }, @names;
 
 Here we take an array of names, and look each name up in
 C<%addresses_by_name> in order to build the corresponding

Reply via email to