Skip to content

Commit 2efcb52

Browse files
Treehugger RobotGerrit Code Review
Treehugger Robot
authored and
Gerrit Code Review
committed
Merge "init: fix typo in error message"
2 parents 220c1d5 + 8c901dd commit 2efcb52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

init/action_parser.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Result<Success> ParsePropertyTrigger(const std::string& trigger, Subcontext* sub
6060
prop_name.erase(equal_pos);
6161

6262
if (!IsActionableProperty(subcontext, prop_name)) {
63-
return Error() << "unexported property tigger found: " << prop_name;
63+
return Error() << "unexported property trigger found: " << prop_name;
6464
}
6565

6666
if (auto [it, inserted] = property_triggers->emplace(prop_name, prop_value); !inserted) {

0 commit comments

Comments
 (0)