Fix silly inconsistency in docs from 253c58bc
Peter Rabbitson [Tue, 17 May 2016 10:30:35 +0000 (12:30 +0200)]
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;