Subject: | Typo in _find_item_blocks() error message. |
Small typo. There should be a space after the first period:
return $self->call_die(
sprintf('There %s only %d %s in the ' .
'response.You specified item %d, ' .
'which does not exist.',
($number_of_items == 1) ? 'is' : 'are',
$number_of_items,
($number_of_items == 1) ?'item':'items',
$n
)
) if ($n > $number_of_items);