Skip to content

Commit

Permalink
POD mentioned 'Algorithms::...' while the module is 'Algorithm'.
Browse files Browse the repository at this point in the history
This fixes RT #14870 as reported by sinan.unur@gmail.com.
  • Loading branch information
Abigail committed Apr 9, 2009
1 parent d1f2703 commit 35d5d3e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,3 +1,6 @@
Version 2009040901
- Fix documentation issue (sinan.unur@gmail.com/RT #14870)
----
Version 2009040601 Version 2009040601
- Moved to git and github. - Moved to git and github.
- Modernization - Modernization
Expand Down
6 changes: 3 additions & 3 deletions lib/Algorithm/Graphs/TransitiveClosure.pm
Expand Up @@ -12,7 +12,7 @@ our @ISA = qw /Exporter/;
our @EXPORT = qw //; our @EXPORT = qw //;
our @EXPORT_OK = qw /floyd_warshall/; our @EXPORT_OK = qw /floyd_warshall/;


our $VERSION = '2009040601'; our $VERSION = '2009040901';




sub floyd_warshall ($) { sub floyd_warshall ($) {
Expand Down Expand Up @@ -52,11 +52,11 @@ __END__
=head1 NAME =head1 NAME
Algorithms::Graphs::TransitiveClosure - Calculate the transitive closure. Algorithm::Graphs::TransitiveClosure - Calculate the transitive closure.
=head1 SYNOPSIS =head1 SYNOPSIS
use Algorithms::Graphs::TransitiveClosure qw /floyd_warshall/; use Algorithm::Graphs::TransitiveClosure qw /floyd_warshall/;
my $graph = [[1, 0, 0, 0], [0, 1, 1, 1], [0, 1, 1, 0], [1, 0, 1, 1]]; my $graph = [[1, 0, 0, 0], [0, 1, 1, 1], [0, 1, 1, 0], [1, 0, 1, 1]];
floyd_warshall $graph; floyd_warshall $graph;
Expand Down

0 comments on commit 35d5d3e

Please sign in to comment.