Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
arp242 committed Apr 4, 2018
1 parent 1003bbd commit 3631ccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/go/rename.vim
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function! go#rename#Rename(bang, ...) abort
let offset = go#util#has_job() ? offset : shellescape(offset)
let to_identifier = go#util#has_job() ? to_identifier : shellescape(to_identifier)

let cmd = [bin_path, "-offset", offset, "-to", to_identifier, -tags', go#config#BuildTags()]
let cmd = [bin_path, "-offset", offset, "-to", to_identifier, '-tags', go#config#BuildTags()]

if go#util#has_job()
call go#util#EchoProgress(printf("renaming to '%s' ...", to_identifier))
Expand Down

0 comments on commit 3631ccd

Please sign in to comment.