Skip to content

Commit

Permalink
Fix typo in new container layout api
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed Sep 13, 2020
1 parent 9711c31 commit b4978f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layout/gridwraplayout.go
Expand Up @@ -19,7 +19,7 @@ type gridWrapLayout struct {
// NewGridWrapContainer creates a new container with the specified objects and using the gridwrap layout.
// Every element will be resized to the size parameter and the content will arrange along a row and flow to a
// new row if the elements don't fit.
func NewGridWrapContainers(size fyne.Size, objects ...fyne.CanvasObject) *fyne.Container {
func NewGridWrapContainer(size fyne.Size, objects ...fyne.CanvasObject) *fyne.Container {
return fyne.NewContainerWithLayout(NewGridWrapLayout(size), objects...)
}

Expand Down

0 comments on commit b4978f2

Please sign in to comment.