Subject: | typos in code examples |
Hi!
There are minor typos in the code examples at line 1066, 1070-1071,
1331-1333 concerning the assignment of a hash value with the => operator
(= is used).
e.g. line 1333 contains:
$bart = $homer->add_children({name = 'Bart'});
but it should be:
$bart = $homer->add_children({name => 'Bart'});
hth, Alex