Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8c901dda authored by Tom Cherry's avatar Tom Cherry
Browse files

init: fix typo in error message

Test: none
Change-Id: Ie8417c7c6e3f6600544006c4a84b5bdfaff9725f
parent 1d2b29a9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {