Commit b2e681893503d7f51679b96a3b7be580bb6d362b

Authored by Jay Berkenbilt
1 parent 5d4cad9c

Fix wording error in error message

Showing 1 changed file with 1 additions and 1 deletions
libqpdf/QPDF_Array.cc
... ... @@ -46,7 +46,7 @@ QPDF_Array::getItem(int n) const
46 46 if ((n < 0) || (n >= (int)this->items.size()))
47 47 {
48 48 throw std::logic_error(
49   - "INTERNAL ERROR: bounds array accessing QPDF_Array element");
  49 + "INTERNAL ERROR: bounds error accessing QPDF_Array element");
50 50 }
51 51 return this->items[n];
52 52 }
... ...