Fixed the typo correctly

This commit is contained in:
s-zeng 2017-09-09 23:00:12 -04:00
parent 76f087c151
commit 33ce6a44e9
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
scriptencoding utf-8
function! repl#scheme#open_repl() abort
function! repl#python#open_repl() abort
" Setting up the file for the current file
if &modified
" Create new file temporary

View File

@ -1,6 +1,6 @@
scriptencoding utf-8
function! repl#clojure#open_repl() abort
function! repl#scheme#open_repl() abort
if &modified
let l:module_file = tempname() . '.rkt'
call writefile(getline(1, expand('$')), l:module_file)