Merge "init: fix typo in error message"
This commit is contained in:
commit
2efcb522df
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ Result<Success> ParsePropertyTrigger(const std::string& trigger, Subcontext* sub
|
||||||
prop_name.erase(equal_pos);
|
prop_name.erase(equal_pos);
|
||||||
|
|
||||||
if (!IsActionableProperty(subcontext, prop_name)) {
|
if (!IsActionableProperty(subcontext, prop_name)) {
|
||||||
return Error() << "unexported property tigger found: " << prop_name;
|
return Error() << "unexported property trigger found: " << prop_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (auto [it, inserted] = property_triggers->emplace(prop_name, prop_value); !inserted) {
|
if (auto [it, inserted] = property_triggers->emplace(prop_name, prop_value); !inserted) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue