diff --git a/exercises/practice/rotational-cipher/.meta/reference/rotational_cipher.bal b/exercises/practice/rotational-cipher/.meta/reference/rotational_cipher.bal index 2897ab1..0c752ab 100644 --- a/exercises/practice/rotational-cipher/.meta/reference/rotational_cipher.bal +++ b/exercises/practice/rotational-cipher/.meta/reference/rotational_cipher.bal @@ -17,7 +17,7 @@ function rotate(string text, int shiftKey) returns string { } string|error rotated = string:'fromCodePointInt(newCodePoint); - if (rotated is string) { + if rotated is string { result += rotated; } }