diff options
author | mjz19910 <matthias291999@gmail.com> | 2022-01-07 05:04:05 -0700 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-07 15:44:42 +0100 |
commit | 10ec98dd3852369834b6367da5615ec2a21846a3 (patch) | |
tree | abbff764b730536f3595cae937f7b8ca86b44e2e /Userland/Libraries/LibWeb | |
parent | 168063819d009b34d43286c0367129592809a79d (diff) | |
download | serenity-10ec98dd3852369834b6367da5615ec2a21846a3.zip |
Everywhere: Fix spelling mistakes
Diffstat (limited to 'Userland/Libraries/LibWeb')
-rw-r--r-- | Userland/Libraries/LibWeb/DOM/Document.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/DOM/Document.h b/Userland/Libraries/LibWeb/DOM/Document.h index c1d93e3bdf..d8277447d2 100644 --- a/Userland/Libraries/LibWeb/DOM/Document.h +++ b/Userland/Libraries/LibWeb/DOM/Document.h @@ -177,7 +177,7 @@ public: JS::Value run_javascript(StringView source, StringView filename = "(unknown)"); NonnullRefPtr<Element> create_element(const String& tag_name); - NonnullRefPtr<Element> create_element_ns(const String& namespace_, const String& qualifed_name); + NonnullRefPtr<Element> create_element_ns(const String& namespace_, const String& qualified_name); NonnullRefPtr<DocumentFragment> create_document_fragment(); NonnullRefPtr<Text> create_text_node(const String& data); NonnullRefPtr<Comment> create_comment(const String& data); |