Skip to content

Commit a4831b6

Browse files
authored
Update MonoAlphabetic.java
1 parent 40274c2 commit a4831b6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/thealgorithms/ciphers/MonoAlphabetic.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public static String decrypt(String data, String key) {
3636
char encryptedChar = key.charAt(idx);
3737
sb.append(encryptedChar);
3838
}
39+
}
3940
return sb.toString();
4041
}
4142

0 commit comments

Comments
 (0)