Skip to content

Commit

Permalink
Root: Fix minor grammar error in error message (#478)
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Cousineau <[email protected]>
  • Loading branch information
EricCousineau-TRI authored Feb 1, 2021
1 parent b9fc657 commit 50e991a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Root.cc
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Errors Root::LoadSdfString(const std::string &_sdf)
if (!readString(_sdf, sdfParsed, errors))
{
errors.push_back(
{ErrorCode::STRING_READ, "Unable to SDF string: " + _sdf});
{ErrorCode::STRING_READ, "Unable to read SDF string: " + _sdf});
return errors;
}

Expand Down

0 comments on commit 50e991a

Please sign in to comment.