summaryrefslogtreecommitdiff
path: root/Userland/Applications
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-04-11 10:52:25 +0200
committerAndreas Kling <kling@serenityos.org>2021-04-11 10:52:25 +0200
commit251018676f47fb34944b1ac195a084573e960656 (patch)
tree7ded12c27c07cad93b46d84acf0ce95644733cf4 /Userland/Applications
parent698c38959dc483d4bb1fc7f85bf9b7887ae8b92c (diff)
downloadserenity-251018676f47fb34944b1ac195a084573e960656.zip
Everywhere: Update references from ReadMe.md => README.md
Diffstat (limited to 'Userland/Applications')
-rw-r--r--Userland/Applications/Serendipity/SerendipityWidget.cpp4
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"));
}
}