NAME
    String::Perl::Warnings - Determine if a string looks like a perl warning

SYNOPSIS
      use String::Perl::Warnings qw(is_warning);

      while( <> ) {
        chomp;
        next unless is_warning($_);
        # Looks like a warning
      }

DESCRIPTION
    String::Perl::Warnings can be used to determine if a string of arbitary
    text appears to look like a warning generated by perl.

    It has one function "is_warning".

FUNCTIONS
    "is_warning"
        Takes an arbitary string of text and returns a true value if the
        string looks like a perl warning, a false value otherwise.

AUTHOR
    Chris "BinGOs" Williams

LICENSE
    Copyright  Chris Williams

    This module may be used, modified, and distributed under the same terms
    as Perl itself. Please see the license that came with your Perl
    distribution for details.

SEE ALSO
    <http://p3rl.org/perldiag>

POD ERRORS
    Hey! The above document had some coding errors, which are explained
    below:

    Around line 748:
        You forgot a '=back' before '=head1'

