From 57c400a151e3d4f78d57176e7fe86c98eed5dd8a Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Thu, 10 Jan 2019 18:12:39 -0500 Subject: [PATCH] mrun: update docs a bit --- mrun/mrun.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mrun/mrun.go b/mrun/mrun.go index adb23f8..317e59e 100644 --- a/mrun/mrun.go +++ b/mrun/mrun.go @@ -1,4 +1,5 @@ -// Package mrun TODO +// Package mrun extends mctx to include event hooks and tracking of the liveness +// of spawned go-routines. package mrun import ( @@ -35,7 +36,7 @@ func (fe *futureErr) set(err error) { type ctxKey int // Thread spawns a go-routine which executes the given function. When the passed -// in Context is cancceled the Context within all threads spawned from it will +// in Context is canceled the Context within all threads spawned from it will // be canceled as well. // // See Wait for accompanying functionality.