summaryrefslogtreecommitdiff
path: root/init.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-06-10 13:10:59 -0400
committerPietro Gagliardi <[email protected]>2014-06-10 13:10:59 -0400
commit5b19e6e9a1467da5842727ff90cde50de4ffb831 (patch)
tree2ad8d017cedf184d05dab02d81fcce56ea1327e2 /init.go
parenta3222f248d25f284d5f4b7c0626ab1140bb0db9a (diff)
More go fmt.
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 9c1fdc1..2e59301 100644
--- a/init.go
+++ b/init.go
@@ -10,7 +10,7 @@ package ui
// It is not safe to call ui.Go() in a goroutine. It must be called directly from main().
//
// This model is undesirable, but Cocoa limitations require it.
-//
+//
// Go does not process the command line for flags (that is, it does not call flag.Parse()), nor does package ui add any of the underlying toolkit's supported command-line flags.
// If you must, and if the toolkit also has environment variable equivalents to these flags (for instance, GTK+), use those instead.
func Go(main func()) error {