Skip to content

Commit 17cc1b1

Browse files
committed
Fix typos at autoload/gist.vim
1 parent 4d64b05 commit 17cc1b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autoload/gist.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ function! gist#Gist(count, line1, line2, ...) abort
741741
let gistid = gistidbuf
742742
let res = webapi#http#post(g:gist_api_url.'gists/'.gistid.'/star', '', { "Authorization": auth }, 'PUT')
743743
if res.status =~# '^2'
744-
echomsg 'Stared' gistid
744+
echomsg 'Starred' gistid
745745
else
746746
echohl ErrorMsg | echomsg 'Star failed' | echohl None
747747
endif
@@ -755,7 +755,7 @@ function! gist#Gist(count, line1, line2, ...) abort
755755
let gistid = gistidbuf
756756
let res = webapi#http#post(g:gist_api_url.'gists/'.gistid.'/star', '', { "Authorization": auth }, 'DELETE')
757757
if res.status =~# '^2'
758-
echomsg 'Unstared' gistid
758+
echomsg 'Unstarred' gistid
759759
else
760760
echohl ErrorMsg | echomsg 'Unstar failed' | echohl None
761761
endif

0 commit comments

Comments
 (0)