From d4a185cf95e83c37b9519977cd56e4f06f75195c Mon Sep 17 00:00:00 2001 From: intexisty <30681593+intexisty@users.noreply.github.com> Date: Tue, 7 Dec 2021 20:31:51 -0600 Subject: [PATCH] Fixed capitalization --- include/config/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/config/config.h b/include/config/config.h index d4309ba..287d4d3 100644 --- a/include/config/config.h +++ b/include/config/config.h @@ -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"]); } }; \ No newline at end of file