mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
LibCore: Change a west const to an east const
Just fixing a little typo I found to make sure that everything adheres to the style guide :^)
This commit is contained in:
parent
d2b99010e4
commit
69445f3dcb
Notes:
sideshowbarker
2024-07-17 21:26:07 +09:00
Author: https://github.com/nyabla 🔰 Commit: https://github.com/SerenityOS/serenity/commit/69445f3dcb3 Pull-request: https://github.com/SerenityOS/serenity/pull/11702
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ NonnullRefPtr<ConfigFile> ConfigFile::open(String const& filename, int fd)
|
|||
return adopt_ref(*new ConfigFile(filename, fd));
|
||||
}
|
||||
|
||||
ConfigFile::ConfigFile(const String& filename, AllowWriting allow_altering)
|
||||
ConfigFile::ConfigFile(String const& filename, AllowWriting allow_altering)
|
||||
: m_file(File::construct(filename))
|
||||
{
|
||||
if (!m_file->open(allow_altering == AllowWriting::Yes ? OpenMode::ReadWrite : OpenMode::ReadOnly))
|
||||
|
|
Loading…
Reference in a new issue