shlomif / perl-XML-LibXML

The XML-LibXML CPAN Distribution for Processing XML using the libxml2 library
https://metacpan.org/release/XML-LibXML
Other
17 stars 35 forks source link

Say either $xpath_expression or $xpath, not both #64

Open jidanni opened 3 years ago

jidanni commented 3 years ago

On XML::LibXML::Node we see

       findnodes
             @nodes = $node->findnodes( $xpath_expression );

           findnodes evaluates the xpath expression (XPath 1.0) on the current...

       find
             $result = $node->find( $xpath );

           find evaluates the XPath 1.0 expression using the current node as...

Well then they should both say ( $xpath_expression ) or both say ( $xpath ) .

Same with the other items, and other sections, of the page.