From 62aebe323a3c86adfabe8ef6674ba3848200dd0b Mon Sep 17 00:00:00 2001 From: Xavier Petit <32063953+xpetit@users.noreply.github.com> Date: Tue, 21 Apr 2020 14:47:11 +0200 Subject: [PATCH] Fixing mistakes --- subjects/isanagram.en.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subjects/isanagram.en.md b/subjects/isanagram.en.md index b4cb6e093..da1ac4fc6 100644 --- a/subjects/isanagram.en.md +++ b/subjects/isanagram.en.md @@ -1,4 +1,4 @@ -## anagram +## isanagram ## **WARNING! VERY IMPORTANT!** @@ -14,7 +14,7 @@ This means that: ### Instructions Write a function that returns `true` if two strings are anagrams, otherwise returns `false`. -Anagram is a string made by using the letters of another string in a different order. +An anagram is a string made by using the letters of another string in a different order. Only lower case characters will be given. @@ -58,8 +58,8 @@ func main() { Its output: ```bash -$> go build -$> ./main +$ go build +$ ./main true false true