From 8c901dda306e25d5f7c6bd822cd540532cfbd6ef Mon Sep 17 00:00:00 2001 From: Tom Cherry Date: Tue, 24 Jul 2018 15:54:33 -0700 Subject: [PATCH] init: fix typo in error message Test: none Change-Id: Ie8417c7c6e3f6600544006c4a84b5bdfaff9725f --- init/action_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/action_parser.cpp b/init/action_parser.cpp index 8a4b518f5..148116200 100644 --- a/init/action_parser.cpp +++ b/init/action_parser.cpp @@ -60,7 +60,7 @@ Result ParsePropertyTrigger(const std::string& trigger, Subcontext* sub prop_name.erase(equal_pos); 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) {