diff options
author | Tom Cherry <tomcherry@google.com> | 2018-07-24 15:54:33 -0700 |
---|---|---|
committer | Tom Cherry <tomcherry@google.com> | 2018-07-24 15:54:33 -0700 |
commit | 8c901dda306e25d5f7c6bd822cd540532cfbd6ef (patch) | |
tree | e1ad432160513deeac4776fd2588f8b4b0700b0c /init/action_parser.cpp | |
parent | 1d2b29a9022ae9910bda2e1371066179bbd176d6 (diff) |
init: fix typo in error message
Test: none
Change-Id: Ie8417c7c6e3f6600544006c4a84b5bdfaff9725f
Diffstat (limited to 'init/action_parser.cpp')
-rw-r--r-- | init/action_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<Success> 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) { |