From 8614525afa50ebab1cf1793d6eb9e7eaeea96d24 Mon Sep 17 00:00:00 2001 From: Marcel Schneider Date: Tue, 17 Jan 2017 23:50:23 +0100 Subject: [PATCH] Fix weird naming of variable --- vim/neosnippets/go.snip | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/neosnippets/go.snip b/vim/neosnippets/go.snip index 58280a0..0405b70 100644 --- a/vim/neosnippets/go.snip +++ b/vim/neosnippets/go.snip @@ -1,8 +1,8 @@ snippet middleware options head - func ${1}(rw http.ResponseWriter, r *http.Request, next http.HandlerFunc) { + func ${1}(w http.ResponseWriter, r *http.Request, next http.HandlerFunc) { ${2} - next(rw, r + next(w, r } snippet handler