diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-08 20:11:14 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-08 20:11:14 -0500 |
commit | 8db9fb7cc2f4fcf301a64929f5f5f52eb33838ec (patch) | |
tree | cfdf3e3f0347d5f9b9080c0f647f8a2c5de03aa7 | |
parent | 72badbe8db656358dcb7f7d05e00578acdffab96 (diff) | |
download | horizon-8db9fb7cc2f4fcf301a64929f5f5f52eb33838ec.tar.gz horizon-8db9fb7cc2f4fcf301a64929f5f5f52eb33838ec.tar.bz2 horizon-8db9fb7cc2f4fcf301a64929f5f5f52eb33838ec.tar.xz horizon-8db9fb7cc2f4fcf301a64929f5f5f52eb33838ec.zip |
hscript: Amend comment
-rw-r--r-- | hscript/script.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hscript/script.cc b/hscript/script.cc index 93d8cb4..c282f41 100644 --- a/hscript/script.cc +++ b/hscript/script.cc @@ -236,7 +236,7 @@ const Script *Script::load(std::istream &sstream, const ScriptOptions opts) { errors++; } - /* Ensure no required keys are missing. */ + /* Ensure all required keys are present. */ #define MISSING_ERROR(key) \ output_error("installfile:" + std::to_string(lineno),\ "expected value for key '" + key + "'",\ |