s/may/should

This commit is contained in:
mAAdhaTTah 2018-11-21 15:55:24 -05:00
parent 6e84352b51
commit 70318c9413
2 changed files with 2 additions and 2 deletions

View File

@ -2040,7 +2040,7 @@ export default class ExpressionParser extends LValParser {
// sequence expression.
throw this.raise(
leftStartPos,
`Pipeline head may not be a comma-separated sequence expression`,
`Pipeline head should not be a comma-separated sequence expression`,
);
}
}

View File

@ -1,4 +1,4 @@
{
"plugins": [["pipelineOperator", { "proposal": "smart" }]],
"throws": "Pipeline head may not be a comma-separated sequence expression (1:0)"
"throws": "Pipeline head should not be a comma-separated sequence expression (1:0)"
}