event: fix typo

This commit is contained in:
LLLeon 2017-10-10 18:47:16 +08:00
parent 89860f4197
commit 4af2f12925

View file

@ -56,7 +56,7 @@ func (mux *TypeMux) Subscribe(types ...interface{}) *TypeMuxSubscription {
defer mux.mutex.Unlock()
if mux.stopped {
// set the status to closed so that calling Unsubscribe after this
// call will short curuit
// call will short circuit.
sub.closed = true
close(sub.postC)
} else {