mirror of https://github.com/jroimartin/gocui.git
Fix typo
This commit is contained in:
parent
881edc4380
commit
70497a1d13
4
gui.go
4
gui.go
|
@ -322,7 +322,7 @@ type Manager interface {
|
|||
// The ManagerFunc type is an adapter to allow the use of ordinary functions as
|
||||
// Managers. If f is a function with the appropriate signature, ManagerFunc(f)
|
||||
// is an Manager object that calls f.
|
||||
type ManagerFunc func(v *Gui) error
|
||||
type ManagerFunc func(g *Gui) error
|
||||
|
||||
// Layout calls f(g)
|
||||
func (f ManagerFunc) Layout(g *Gui) error {
|
||||
|
@ -342,7 +342,7 @@ func (g *Gui) SetManager(managers ...Manager) {
|
|||
|
||||
// SetManagerFunc sets the given manager function. It deletes all views and
|
||||
// keybindings.
|
||||
func (g *Gui) SetManagerFunc(manager func(v *Gui) error) {
|
||||
func (g *Gui) SetManagerFunc(manager func(g *Gui) error) {
|
||||
g.SetManager(ManagerFunc(manager))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue