diff --git a/doc/go_mem.html b/doc/go_mem.html index a003241581..1d45dceb62 100644 --- a/doc/go_mem.html +++ b/doc/go_mem.html @@ -1,6 +1,6 @@ @@ -107,9 +107,9 @@ unspecified order.

Initialization

-Program initialization runs in a single goroutine and -new goroutines created during initialization do not -start running until initialization ends. +Program initialization runs in a single goroutine, +but that goroutine may create other goroutines, +which run concurrently.

@@ -122,11 +122,6 @@ The start of the function main.main happens after all init functions have finished.

-

-The execution of any goroutines created during init -functions happens after all init functions have finished. -

-

Goroutine creation