Subject: | Typo in man page of Text::Diff::Table |
In the SYNOPSIS section of the man page the code contains the line
diff \@a, $b { STYLE => "Table" };
this should rather be
diff \@a, $b, { STYLE => "Table" };
as the example currently results in a compiler error.