Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lexborisov/perl-html-myhtml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlex <lexinhell@gmail.com>2016-02-29 16:23:19 +0300
committerlex <lexinhell@gmail.com>2016-02-29 16:23:19 +0300
commit9b11b5c463b9035e46037d9d6acb1095e0d001cf (patch)
treecf1c869a739f3dd19bc7072a1a25e4e1db5e4d19 /examples
parent62a42a38a6c3b8e6d58dfee4c602118ba64290e6 (diff)
Fixed compile problem
Diffstat (limited to 'examples')
-rw-r--r--examples/detect_encoding.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/detect_encoding.pl b/examples/detect_encoding.pl
index cea8102..a91e597 100644
--- a/examples/detect_encoding.pl
+++ b/examples/detect_encoding.pl
@@ -25,7 +25,7 @@ $myhtml->parse($tree, $encoding, $body);
# print result
print "Print HTML Tree:\n";
-$tree->document->print_childs($tree, *STDOUT, 0);
+$tree->document->print_children($tree, *STDOUT, 0);
$tree->destroy();