Skip to content

Commit

Permalink
Fix typo: ELEVE -> ELEVEN
Browse files Browse the repository at this point in the history
  • Loading branch information
Lizard committed Sep 15, 2015
1 parent cd6a9d0 commit 211336c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public class BackstagePassQualityControl implements QualityControl {

private static final int ELEVE_DAYS = 11;
private static final int ELEVEN_DAYS = 11;
private static final int FIVE_DAYS = 5;

private static final int NO_EXTRA_QUALITY_HIKE = 0;
Expand Down Expand Up @@ -41,7 +41,7 @@ private boolean concertIsInFiveOrLessDays(Item backstagePass) {
}

private boolean concertIsWithinSixAndTenDays(Item backstagePass) {
return backstagePass.getSellIn() > FIVE_DAYS && backstagePass.getSellIn() < ELEVE_DAYS;
return backstagePass.getSellIn() > FIVE_DAYS && backstagePass.getSellIn() < ELEVEN_DAYS;
}


Expand Down

0 comments on commit 211336c

Please sign in to comment.