From c90e3d6e3f813cd68348039ee2aead9481ebc7a7 Mon Sep 17 00:00:00 2001 From: Rolando Scarfullery <74724935+hexbreak@users.noreply.github.com> Date: Sun, 7 Feb 2021 21:31:04 -0500 Subject: [PATCH] Update README.md Fixed for a clearer explanation. --- exercises/07-lambda-function-two/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/07-lambda-function-two/README.md b/exercises/07-lambda-function-two/README.md index db92425..70c479f 100755 --- a/exercises/07-lambda-function-two/README.md +++ b/exercises/07-lambda-function-two/README.md @@ -15,7 +15,7 @@ print(multy(2,2)) # 📝 Instructions: 1. Create a lambda function called `rapid` it will take one string parameter -2. Return the same string but removing the last letter form it +2. Return the same string with the last letter removed. # 💡 Hint