Fix UnknownGoalHandle error string. (#856)

Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
This commit is contained in:
Chris Lalancette 2019-09-18 17:52:49 -04:00 committed by GitHub
parent cf838d1eb7
commit 9b47f36080
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ class UnknownGoalHandleError : public std::invalid_argument
{
public:
UnknownGoalHandleError()
: std::invalid_argument("Goal handle is not know to this client.")
: std::invalid_argument("Goal handle is not known to this client.")
{
}
};