Fix silly inconsistency in docs from 253c58bc
[p5sagit/namespace-clean.git] / lib / namespace / clean.pm
index 19f4519..478105e 100644 (file)
@@ -309,10 +309,10 @@ until B<runtime>.
 
 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;