소스 검색

fix typos

tags/v0.9.0
jimzhan 9 년 전
부모
커밋
959570a4c5
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      README.md

+ 2
- 2
README.md 파일 보기

@@ -107,7 +107,7 @@ Since a middleware module is just the standard http.Handler, writing custom midd
app.Use(func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
log.Printf("Custom Middleware Module Started")
next.ServeHTTP(writer, request)
next.ServeHTTP(w, r)
log.Printf("Custom Middleware Module Ended")
})
})
@@ -125,7 +125,7 @@ user := app.Group("/users")
user.Use(func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
log.Printf("this is a protected page")
next.ServeHTTP(writer, request)
next.ServeHTTP(w, r)
})
})
```

Loading…
취소
저장