Commit cefeb585 authored by Jia Chenhui's avatar Jia Chenhui Committed by Felix Lange

event: fix typo (#15270)

parent 3680cd59
...@@ -56,7 +56,7 @@ func (mux *TypeMux) Subscribe(types ...interface{}) *TypeMuxSubscription { ...@@ -56,7 +56,7 @@ func (mux *TypeMux) Subscribe(types ...interface{}) *TypeMuxSubscription {
defer mux.mutex.Unlock() defer mux.mutex.Unlock()
if mux.stopped { if mux.stopped {
// set the status to closed so that calling Unsubscribe after this // set the status to closed so that calling Unsubscribe after this
// call will short curuit // call will short circuit.
sub.closed = true sub.closed = true
close(sub.postC) close(sub.postC)
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment