Fixed capitalization

This commit is contained in:
intexisty 2021-12-07 20:31:51 -06:00
parent 6f20d27117
commit d4a185cf95
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ public:
Config(const std::string& config_path) {
toml::value toml = toml::parse(config_path);
programs = ProgramsConfig(toml["programs"]);
programs = ProgramsConfig(toml["Programs"]);
}
};