From 59870e80f005cbd8f883c24200f81bde2fd63a7e Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 3 Jun 2014 22:54:28 -0400 Subject: Quick changes: turned "Window has been opened" to "Window has been created" since I'm going to separate creating and opening (Open() will call Create()). --- window.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'window.go') diff --git a/window.go b/window.go index b182f7c..58f0aca 100644 --- a/window.go +++ b/window.go @@ -10,7 +10,7 @@ import ( // Window represents an on-screen window. type Window struct { // Closing gets a message when the user clicks the window's close button. - // You cannot change it once the Window has been opened. + // You cannot change it once the Window has been created. // If you do not respond to this signal, nothing will happen; regardless of whether you handle the signal or not, the window will not be closed. Closing chan struct{} -- cgit v1.2.3