summaryrefslogtreecommitdiff
path: root/Userland/html.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-11-06 20:52:18 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-11-06 20:52:18 +0100
commit794f2d5645d9174a54e37380f4f6a784deaa71b0 (patch)
tree76c1c110d84fa38df05ad366a8c1ab4146734cde /Userland/html.cpp
parentf5cf8d4ad83eeaffb65adbdfce7ec31538d6ed6f (diff)
downloadserenity-794f2d5645d9174a54e37380f4f6a784deaa71b0.zip
LibHTML: Rename parse_html() => parse_html_document()
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 91cfdf6b1e..33562f42c3 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(html);
+ auto document = parse_html_document(html);
auto window = GWindow::construct();
auto widget = HtmlView::construct();