Skip to content

Commit 147da38

Browse files
chore: fix typos in src/main/java/com/thealgorithms/ciphers/AES.java (#7047)
Fix typos in src/main/java/com/thealgorithms/ciphers/AES.java Co-authored-by: Deniz Altunkapan <[email protected]>
1 parent 7026641 commit 147da38

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/thealgorithms/ciphers

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2738,7 +2738,7 @@ public static BigInteger decrypt(BigInteger cipherText, BigInteger key) {
27382738

27392739
public static void main(String[] args) {
27402740
try (Scanner input = new Scanner(System.in)) {
2741-
System.out.println("Enter (e) letter for encrpyt or (d) letter for decrypt :");
2741+
System.out.println("Enter (e) letter for encrypt or (d) letter for decrypt :");
27422742
char choice = input.nextLine().charAt(0);
27432743
String in;
27442744
switch (choice) {

0 commit comments

Comments
 (0)