From 0a6df37c99260a63b0190e11ee76c38ef4ca00f4 Mon Sep 17 00:00:00 2001 From: amin Date: Tue, 7 May 2024 00:43:38 +0100 Subject: [PATCH] docs: fix grammer mistakes --- subjects/java/checkpoints/almost-palindrom/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/java/checkpoints/almost-palindrom/README.md b/subjects/java/checkpoints/almost-palindrom/README.md index 6f3edc191..61e468b14 100644 --- a/subjects/java/checkpoints/almost-palindrom/README.md +++ b/subjects/java/checkpoints/almost-palindrom/README.md @@ -5,7 +5,7 @@ In a file named `AlmostPalindrome.java` write a function `isAlmostPalindrome` that returns true if the String in parameter is almost palindrome. A word is considered "almost a palindrome" if removing one letter from the word makes it a palindrome. -> 💡 The String in parametre will contains at least 3 letters. +> 💡 The input String will contain at least 3 letters. ### Expected Functions