2
0
mirror of https://github.com/soheilhy/cmux.git synced 2024-09-20 02:55:46 +08:00

Fix ugly variable name

This commit is contained in:
Yuki Ito 2018-01-24 02:17:15 +09:00 committed by Soheil Hassas Yeganeh
parent e96bd75f84
commit cfc68f9888

View File

@ -115,10 +115,10 @@ type cMux struct {
func matchersToMatchWriters(matchers []Matcher) []MatchWriter {
mws := make([]MatchWriter, 0, len(matchers))
for _, _m := range matchers {
m := _m
for _, m := range matchers {
cm := m
mws = append(mws, func(w io.Writer, r io.Reader) bool {
return m(r)
return cm(r)
})
}
return mws