From 8a4d0007f345565ec1e7b91a2729cbd5effea653 Mon Sep 17 00:00:00 2001 From: Greg Pomerantz Date: Mon, 16 Dec 2019 09:16:37 -0500 Subject: [PATCH] app: clarify documentation of app.Main() Signed-off-by: Greg Pomerantz --- app/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/doc.go b/app/doc.go index 24eef87e..bea08231 100644 --- a/app/doc.go +++ b/app/doc.go @@ -39,7 +39,7 @@ Main The Main function must be called from a program's main function, to hand over control of the main thread to operating systems that need it. -Because Main is also blocking, the event loop of a Window must run in a goroutine. +Because Main is also blocking on some platforms, the event loop of a Window must run in a goroutine. For example, to display a blank but otherwise functional window: