From e5222a22963ac729e8a015169b24975bee7f7b96 Mon Sep 17 00:00:00 2001 From: zanninso Date: Tue, 9 Jul 2024 17:32:01 +0100 Subject: [PATCH] docs: fix formatting and adding more details --- subjects/java/checkpoints/is-anagram/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/java/checkpoints/is-anagram/README.md b/subjects/java/checkpoints/is-anagram/README.md index 31ef2f1b1..bd45d321f 100644 --- a/subjects/java/checkpoints/is-anagram/README.md +++ b/subjects/java/checkpoints/is-anagram/README.md @@ -2,7 +2,7 @@ ### Instructions -Create a class `AnagramChecker` that provides a method to check if two strings are anagrams. An anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once. +Create a class `AnagramChecker` that provides a method to check if two strings are anagrams. An anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.The comparison should be case insensitive. ### Expected Class @@ -16,7 +16,7 @@ public class AnagramChecker { ### Usage -Here is a possible ExerciseRunner.java to test your class: +Here is a possible `ExerciseRunner.java` to test your class: ```java public class ExerciseRunner {