From 7d27d2527d40891624c8b9c96c9b84badb834483 Mon Sep 17 00:00:00 2001 From: Andy Williams Date: Mon, 1 Oct 2018 21:38:23 +0100 Subject: [PATCH] Fix some typos --- canvas/base.go | 2 +- canvasobject.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/canvas/base.go b/canvas/base.go index 7eb86244de..cda1e36e06 100644 --- a/canvas/base.go +++ b/canvas/base.go @@ -35,7 +35,7 @@ func (r *baseObject) Move(pos fyne.Position) { fyne.RefreshObject(r) } -// MinSize returns the specified minumum size, if set, or {0, 0} otherwise +// MinSize returns the specified minimum size, if set, or {0, 0} otherwise func (r *baseObject) MinSize() fyne.Size { return r.min } diff --git a/canvasobject.go b/canvasobject.go index 0fff2bbf18..6b7e4eaf76 100644 --- a/canvasobject.go +++ b/canvasobject.go @@ -14,7 +14,7 @@ type CanvasObject interface { MinSize() Size } -// ThemedObject indicates that the associated CanvasObject reponse to theme +// ThemedObject indicates that the associated CanvasObject responds to theme // changes. When the settings detect a theme change the object will be informed // through the invocation of ApplyTheme(). type ThemedObject interface {