From: Peter Rabbitson Date: Tue, 17 May 2016 10:30:35 +0000 (+0200) Subject: Fix silly inconsistency in docs from 253c58bc X-Git-Tag: 0.27~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=041ac8b7297ab2c6a99b34af95fb790aa55ce9c7;p=p5sagit%2Fnamespace-clean.git Fix silly inconsistency in docs from 253c58bc --- diff --git a/lib/namespace/clean.pm b/lib/namespace/clean.pm index 19f4519..478105e 100644 --- a/lib/namespace/clean.pm +++ b/lib/namespace/clean.pm @@ -309,10 +309,10 @@ until B. You need to work around this by forcing a compile-time resolution like so: - use MyApp::Utils 'sorter'; + use MyApp::Utils 'my_sorter'; use namespace::clean; - my $my_sorter_cref = \&sorter; + my $my_sorter_cref = \&my_sorter; my @sorted = sort $my_sorter_cref @list;