fix small typo in HandleStreams error messages

This commit is contained in:
poopoothegorilla
2015-04-11 18:52:18 -04:00
parent 343e505904
commit 009f834632

View File

@ -281,7 +281,7 @@ func (t *http2Server) HandleStreams(handle func(*Stream)) {
case *http2.WindowUpdateFrame:
t.handleWindowUpdate(frame)
default:
log.Printf("transport: http2Server.HanldeStreams found unhandled frame type %v.", frame)
log.Printf("transport: http2Server.HandleStreams found unhandled frame type %v.", frame)
}
}
}