diff --git a/curriculum/challenges/english/blocks/workshop-caesar-cipher/6819ca464db219ab86f37dc4.md b/curriculum/challenges/english/blocks/workshop-caesar-cipher/6819ca464db219ab86f37dc4.md index 044f7dd25b4..7950a14ab25 100644 --- a/curriculum/challenges/english/blocks/workshop-caesar-cipher/6819ca464db219ab86f37dc4.md +++ b/curriculum/challenges/english/blocks/workshop-caesar-cipher/6819ca464db219ab86f37dc4.md @@ -7,9 +7,9 @@ dashedName: step-20 # --description-- -As you've already verified, the shift passed to encrypt the text should be positive. It cannot exceed `25` (the last index of `alphabet`) though. +As you've already verified, the shift passed to encrypt the text should be a positive integer. It cannot exceed `25` (the last index of `alphabet`) though. -Add a second condition to the `if` statement that verifies that `shift` is greater than `25`. Remember that the logical OR operation in Python is implemented through the `or` operator. +Add a second condition to the `if` statement that checks if `shift` is greater than `25`. Remember that the logical OR operation in Python is implemented through the `or` operator. Also, update the returned message to `Shift must be an integer between 1 and 25.`