fix typo in openconn that probably caused a lot of hassles

This commit is contained in:
Sundog Jones 2021-04-14 20:25:04 -07:00
parent 5a9dc20749
commit 292e2a95da
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import (
type key int
const inChanKey key = 0
const outChanKey key = 0
const outChanKey key = 1
// NewContext returns a new Context carrying two new channels.
func NewContext(ctx context.Context) context.Context {