2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-29 00:10:54 +00:00

Fix wording error in error message

This commit is contained in:
Jay Berkenbilt 2012-06-20 07:36:47 -04:00
parent 5d4cad9c02
commit b2e6818935

View File

@ -46,7 +46,7 @@ QPDF_Array::getItem(int n) const
if ((n < 0) || (n >= (int)this->items.size()))
{
throw std::logic_error(
"INTERNAL ERROR: bounds array accessing QPDF_Array element");
"INTERNAL ERROR: bounds error accessing QPDF_Array element");
}
return this->items[n];
}