Subject: | typo in SYNOPSIS of Algorithm::Dependency |
Hi,
The synopsis for Algorithm-Dependency has a small typo:
# Find out the order we need to act on the items in.
# This WILL include the item we selected, 'Foo'.
my $schedule = $dep->depends( 'Foo' );
That should be:
my $schedule = $dep->schedule( 'Foo' );
Belden