mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 02:47:34 +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
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));
|
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))
|
: m_file(File::construct(filename))
|
||||||
{
|
{
|
||||||
if (!m_file->open(allow_altering == AllowWriting::Yes ? OpenMode::ReadWrite : OpenMode::ReadOnly))
|
if (!m_file->open(allow_altering == AllowWriting::Yes ? OpenMode::ReadWrite : OpenMode::ReadOnly))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue