fix inconsistency in dataset spelling

This commit is contained in:
Dan Ang
2023-03-24 16:00:33 +01:00
parent 6c8970e0a3
commit 19424ae06d
4 changed files with 21 additions and 21 deletions

View File

@ -107,7 +107,7 @@ final class NameFilterIterator extends RecursiveFilterIterator
if (preg_match('/^(.*?)#(\d+)(?:-(\d+))?$/', $filter, $matches)) {
if (isset($matches[3]) && $matches[2] < $matches[3]) {
$filter = sprintf(
'%s.*with data set #(\d+)$',
'%s.*with dataset #(\d+)$',
$matches[1]
);
@ -115,7 +115,7 @@ final class NameFilterIterator extends RecursiveFilterIterator
$this->filterMax = (int) $matches[3];
} else {
$filter = sprintf(
'%s.*with data set #%s$',
'%s.*with dataset #%s$',
$matches[1],
$matches[2]
);
@ -125,7 +125,7 @@ final class NameFilterIterator extends RecursiveFilterIterator
// * testDetermineJsonError@JSON.*
elseif (preg_match('/^(.*?)@(.+)$/', $filter, $matches)) {
$filter = sprintf(
'%s.*with data set "%s"$',
'%s.*with dataset "%s"$',
$matches[1],
$matches[2]
);