Skip to content

Commit 3da3a75

Browse files
Improved spacing on code snippet
1 parent f888819 commit 3da3a75

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Palindromes/README.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ func isPalindrome(_ str: String) -> Bool {
3131
if length > 1 {
3232
return palindrome(strippedString.lowercased(), left: 0, right: length - 1)
3333
}
34-
return false
34+
35+
return false
3536
}
3637

3738
private func palindrome(_ str: String, left: Int, right: Int) -> Bool {

0 commit comments

Comments
 (0)