summaryrefslogtreecommitdiff
path: root/Userland/html.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-11-06 20:51:07 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-11-06 20:51:07 +0100
commitf5cf8d4ad83eeaffb65adbdfce7ec31538d6ed6f (patch)
tree07987e909b07a73e206498f9c84785ab634facca /Userland/html.cpp
parentf6439789db9c02216baabb197017c7a79a63ba04 (diff)
downloadserenity-f5cf8d4ad83eeaffb65adbdfce7ec31538d6ed6f.zip
Revert "LibHTML: Rename parse_html() => parse_html_document()"
This reverts commit f6439789db9c02216baabb197017c7a79a63ba04. Oops, I committed unrelated changes here, let me clean that up..
Diffstat (limited to 'Userland/html.cpp')
-rw-r--r--Userland/html.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/html.cpp b/Userland/html.cpp
index 33562f42c3..91cfdf6b1e 100644
--- a/Userland/html.cpp
+++ b/Userland/html.cpp
@@ -34,7 +34,7 @@ int main(int argc, char** argv)
}
String html = String::copy(f->read_all());
- auto document = parse_html_document(html);
+ auto document = parse_html(html);
auto window = GWindow::construct();
auto widget = HtmlView::construct();