From 0a41253681ac4f44579c4fa13eb8a47f9a92e187 Mon Sep 17 00:00:00 2001 From: Ella <44427128+okorie2@users.noreply.github.com> Date: Mon, 23 Mar 2026 17:09:16 +0000 Subject: [PATCH] fix(curriculum): update step description for Caesar cipher challenge (#66596) --- .../blocks/workshop-caesar-cipher/6819ca464db219ab86f37dc4.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.`