Skip to content

Commit 166ad40

Browse files
authored
Flip order of atbash-cipher functions (#355)
1 parent 053a53f commit 166ad40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/practice/atbash-cipher/atbash_cipher.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
" thequickbrownfoxjumpsoverthelazydog
1515
"
1616

17-
function! AtbashDecode(cipher) abort
17+
function! AtbashEncode(plaintext) abort
1818
" your code goes here
1919
endfunction
2020

21-
function! AtbashEncode(plaintext) abort
21+
function! AtbashDecode(cipher) abort
2222
" your code goes here
2323
endfunction

0 commit comments

Comments
 (0)