Skip to content

Commit 43f7526

Browse files
committed
Web.AsyncHTTP: Fix typo.
1 parent 8f525ee commit 43f7526

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

autoload/vital/__vital__/Web/AsyncHTTP.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function! s:post(url, ...) abort
9696
endfunction
9797

9898
function! s:parseHeader(headers) abort
99-
return c:Core.parseHeader(a:headers)
99+
return s:Core.parseHeader(a:headers)
100100
endfunction
101101

102102
" Clients

autoload/vital/__vital__/Web/HTTP.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function! s:post(url, ...) abort
107107
endfunction
108108

109109
function! s:parseHeader(headers) abort
110-
return c:Core.parseHeader(a:headers)
110+
return s:Core.parseHeader(a:headers)
111111
endfunction
112112

113113
" Clients

0 commit comments

Comments
 (0)