LibCore: Fix a typo in CConfigFile.h

This commit is contained in:
Conrad Pankoff 2020-01-07 22:42:28 +11:00 committed by Andreas Kling
parent c7fd39f3b1
commit 84f0be37f0
Notes: sideshowbarker 2024-07-19 10:17:27 +09:00

View file

@ -20,7 +20,7 @@ public:
Vector<String> groups() const;
Vector<String> keys(const String& group) const;
String read_entry(const String& group, const String& key, const String& default_vaule = String()) const;
String read_entry(const String& group, const String& key, const String& default_value = String()) const;
int read_num_entry(const String& group, const String& key, int default_value = 0) const;
bool read_bool_entry(const String& group, const String& key, bool default_value = false) const;