Skip to content

Commit

Permalink
Fix typo on rule 415.
Browse files Browse the repository at this point in the history
  • Loading branch information
timronan committed Jun 1, 2020
1 parent ed226d9 commit 3b252d0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ public Message evaluate(Channel channel, Response response) {
//Stage [N] polynomial requires that an InstrumentPolynomial be included
if (stage.getNumber().intValue() < 10 ) {
return Result.error("[stage " + String.format("%02d", stage.getNumber().intValue())
+ "] includes a Polynomial so InstrumentPolynomial be included");
+ "] includes a Polynomial so InstrumentPolynomial must be included");
}else {
return Result.error("[stage " + stage.getNumber().intValue()
+ "] must includes a Polynomial so InstrumentPolynomial be included");
+ "] includes a Polynomial so InstrumentPolynomial must be included");
}
}
}
Expand Down

0 comments on commit 3b252d0

Please sign in to comment.