summaryrefslogtreecommitdiff
path: root/init.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-10 11:59:40 -0400
committerPietro Gagliardi <[email protected]>2014-04-10 11:59:40 -0400
commit9e185d815eec14ea9f50ffbbbf171cf78e597808 (patch)
treeb91a9d5916928516d4e11bf4ea4c32846a93b9d3 /init.go
parent0a54daa7b1a3b433cce594bdac16659a06445c74 (diff)
Documented that event channels can be assigned to each other to collapse events.
Diffstat (limited to 'init.go')
-rw-r--r--init.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.go b/init.go
index 9349713..8b9d9ba 100644
--- a/init.go
+++ b/init.go
@@ -17,7 +17,7 @@ func Go(main func()) error {
// AppQuit is pulsed when the user decides to quit the program if their operating system provides a facility for quitting an entire application, rather than merely close all windows (for instance, Mac OS X via the Dock icon).
// You should assign one of your Windows's Closing to this variable so the user choosing to quit the application is treated the same as closing that window.
-// If you do not respond to this signal, nothing will happen.
+// If you do not respond to this signal, nothing will happen; regardless of whether or not you respond to this signal, the application will not quit.
// Do not merely check this channel alone; it is not guaranteed to be pulsed on all systems or in all conditions.
var AppQuit chan struct{}