aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Array.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDF_Array.cc')
-rw-r--r--libqpdf/QPDF_Array.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libqpdf/QPDF_Array.cc b/libqpdf/QPDF_Array.cc
index def219dd..91e34eec 100644
--- a/libqpdf/QPDF_Array.cc
+++ b/libqpdf/QPDF_Array.cc
@@ -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];
}