fix spelling in svg parser error

This commit is contained in:
Dane Springmeyer 2017-09-10 08:59:27 -07:00
parent f64c7573b1
commit fa057a8d06

View file

@ -1443,7 +1443,7 @@ void svg_parser::parse(std::string const& filename)
if (!stream)
{
std::stringstream ss;
ss << "SVG error: unbale to open \"" << filename << "\"";
ss << "SVG error: unable to open \"" << filename << "\"";
throw std::runtime_error(ss.str());
}