Updated doc.go with the MsgBox() change.

This commit is contained in:
Pietro Gagliardi 2014-06-06 10:07:34 -04:00
parent 4856790299
commit 4b70a37fb1
1 changed files with 1 additions and 1 deletions

2
doc.go
View File

@ -30,7 +30,7 @@ Here is a simple, complete program that asks the user for their name and greets
case <-w.Closing: // user tries to close the window or quit the program
return
case <-button.Clicked: // user clicked the button
ui.MsgBox("Hello, " + nameField.Text() + "!", "")
ui.MsgBox(w, "Hello, " + nameField.Text() + "!", "")
}
}
}