Skip to content

Commit

Permalink
Remove parentheses
Browse files Browse the repository at this point in the history
Co-authored-by: DimuthuMadushan <[email protected]>
  • Loading branch information
BNAndras and DimuthuMadushan authored Jul 1, 2024
1 parent 3cf42c0 commit 43d80b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function rotate(string text, int shiftKey) returns string {
if codePoint >= 65 && codePoint <= 90 {
newCodePoint = 65 + (codePoint - 65 + shiftKey) % 26;
}
else if (codePoint >= 97 && codePoint <= 122) {
else if codePoint >= 97 && codePoint <= 122 {
newCodePoint = 97 + (codePoint - 97 + shiftKey) % 26;
}

Expand Down

0 comments on commit 43d80b7

Please sign in to comment.