diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-11 10:52:25 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-11 10:52:25 +0200 |
commit | 251018676f47fb34944b1ac195a084573e960656 (patch) | |
tree | 7ded12c27c07cad93b46d84acf0ce95644733cf4 /Userland/Applications | |
parent | 698c38959dc483d4bb1fc7f85bf9b7887ae8b92c (diff) | |
download | serenity-251018676f47fb34944b1ac195a084573e960656.zip |
Everywhere: Update references from ReadMe.md => README.md
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/Serendipity/SerendipityWidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/Serendipity/SerendipityWidget.cpp b/Userland/Applications/Serendipity/SerendipityWidget.cpp index cd722184d4..2cd959c247 100644 --- a/Userland/Applications/Serendipity/SerendipityWidget.cpp +++ b/Userland/Applications/Serendipity/SerendipityWidget.cpp @@ -133,14 +133,14 @@ void SerendipityWidget::open_and_parse_tips_file() void SerendipityWidget::open_and_parse_readme_file() { - auto file = Core::File::construct("/home/anon/ReadMe.md"); + auto file = Core::File::construct("/home/anon/README.md"); if (!file->open(Core::IODevice::ReadOnly)) return; auto document = Markdown::Document::parse(file->read_all()); if (document) { auto html = document->render_to_html(); - m_web_view->load_html(html, URL::create_with_file_protocol("/home/anon/ReadMe.md")); + m_web_view->load_html(html, URL::create_with_file_protocol("/home/anon/README.md")); } } |