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:
nyabla 2022-01-07 18:48:23 +00:00 committed by Brian Gianforcaro
parent d2b99010e4
commit 69445f3dcb
Notes: sideshowbarker 2024-07-17 21:26:07 +09:00

View file

@ -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))