File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ func HandleAppLogs(
8080 Follow : follow ,
8181 }
8282
83- // Handle HEAD requests with erly return
83+ // Handle HEAD requests with early return
8484 if r .Method == http .MethodHead {
8585 render .EncodeResponse (w , http .StatusOK , nil )
8686 return
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ func HandlerAppStatus(
3434 cfg config.Configuration ,
3535) http.HandlerFunc {
3636 return func (w http.ResponseWriter , r * http.Request ) {
37- // Handle HEAD requests with erly return
37+ // Handle HEAD requests with early return
3838 if r .Method == http .MethodHead {
3939 render .EncodeResponse (w , http .StatusOK , nil )
4040 return
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import (
2626
2727func HandleSystemResources () http.HandlerFunc {
2828 return func (w http.ResponseWriter , r * http.Request ) {
29- // Handle HEAD requests with erly return
29+ // Handle HEAD requests with early return
3030 if r .Method == http .MethodHead {
3131 render .EncodeResponse (w , http .StatusOK , nil )
3232 return
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ func HandleUpdateApply(updater *update.Manager) http.HandlerFunc {
127127
128128func HandleUpdateEvents (updater * update.Manager ) http.HandlerFunc {
129129 return func (w http.ResponseWriter , r * http.Request ) {
130- // Handle HEAD requests with erly return
130+ // Handle HEAD requests with early return
131131 if r .Method == http .MethodHead {
132132 render .EncodeResponse (w , http .StatusOK , nil )
133133 return
You can’t perform that action at this time.
0 commit comments