From 4e6e209ae8cf389bd74da163effcfdb96bc15dd3 Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Mon, 14 Jun 2021 14:59:17 +0100 Subject: [PATCH] Update README.md little update. --- subjects/alphamirror/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/alphamirror/README.md b/subjects/alphamirror/README.md index 9cc8a414..2508e3de 100644 --- a/subjects/alphamirror/README.md +++ b/subjects/alphamirror/README.md @@ -4,7 +4,7 @@ Write a program called `alphamirror` that takes a `string` as argument and displays this `string` after replacing each alphabetical character with the opposite alphabetical character. -The case of the letter stays the same, for example : +The case of the letter remains unchanged, for example : 'a' becomes 'z', 'Z' becomes 'A' 'd' becomes 'w', 'M' becomes 'N'