mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 19:59:17 +00:00
LibWeb: Replace WrapperGenerator's snake_name() with String::to_snakecase()
This now turns "createHTMLDocument" into "create_html_document", that's another FIXME gone. :^)
This commit is contained in:
parent
4fafe14691
commit
a4f80ee658
Notes:
sideshowbarker
2024-07-18 22:02:18 +09:00
Author: https://github.com/linusg
Commit: a4f80ee658
Pull-request: https://github.com/SerenityOS/serenity/pull/5459
3 changed files with 17 additions and 37 deletions
|
@ -39,7 +39,7 @@ DOMImplementation::DOMImplementation(Document& document)
|
|||
{
|
||||
}
|
||||
|
||||
const NonnullRefPtr<Document> DOMImplementation::create_htmldocument(const String& title) const
|
||||
const NonnullRefPtr<Document> DOMImplementation::create_html_document(const String& title) const
|
||||
{
|
||||
auto html_document = Document::create();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue