From 20e0dddcd4ee31a90811059d60cc8036e31e805a Mon Sep 17 00:00:00 2001 From: davhojt Date: Wed, 1 Jun 2022 09:33:22 +0300 Subject: [PATCH] docs(rot21) correct grammar --- subjects/rot21/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/subjects/rot21/README.md b/subjects/rot21/README.md index 4d633c2f..e5620ef6 100644 --- a/subjects/rot21/README.md +++ b/subjects/rot21/README.md @@ -4,10 +4,9 @@ The purpose of this exercise is to create a `rot21` function that works like the ROT13 cipher. -This function will receive a `string` and it will rotate each letter of that `string` 21 times to the right. +This function will receive a `string` and will rotate each letter of that `string` 21 times to the right. -The function should only rotate letters. If the string includes punctuation, symbols and/or numbers -they will remain the same. +The function should only rotate letters. Punctuation, symbols and numbers should remain the unchanged. ### Expected functions