Skip to content

Commit 6b2c99e

Browse files
xiaoxiangxianziandydotxyz
xiaoxiangxianzi
authored andcommitted
chore: remove repetitive words in comments
Signed-off-by: xiaoxiangxianzi <zhaoyizheng@outlook.com>
1 parent 3e96237 commit 6b2c99e

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

internal/app/lifecycle.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func (l *Lifecycle) SetOnStoppedHookExecuted(f func()) {
2626
l.onStoppedHookExecuted = f
2727
}
2828

29-
// SetOnEnteredForeground hooks into the the app becoming foreground.
29+
// SetOnEnteredForeground hooks into the app becoming foreground.
3030
func (l *Lifecycle) SetOnEnteredForeground(f func()) {
3131
l.onForeground.Store(f)
3232
}

internal/cache/base.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ func destroyExpiredRenderers(now time.Time) {
202202
}
203203

204204
// matchesACanvas returns true if the canvas represented by the canvasInfo object matches one of
205-
// the canvases passed in in 'canvases', otherwise false is returned.
205+
// the canvases passed in 'canvases', otherwise false is returned.
206206
func matchesACanvas(cinfo *canvasInfo, canvases []fyne.Canvas) bool {
207207
canvas := cinfo.canvas
208208

internal/repository/http.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func constructURI(u fyne.URI) string {
6767
return uri
6868
}
6969

70-
// Exists checks whether the the resource at u returns a
70+
// Exists checks whether the resource at u returns a
7171
// non "404 NOT FOUND" response header.
7272
//
7373
// Implements: repository.Repository

storage/filter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type FileFilter interface {
1212
Matches(fyne.URI) bool
1313
}
1414

15-
// ExtensionFileFilter represents a file filter based on the the ending of file names,
15+
// ExtensionFileFilter represents a file filter based on the ending of file names,
1616
// for example ".txt" and ".png".
1717
type ExtensionFileFilter struct {
1818
Extensions []string

theme/icons_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ func TestThemedResource_Content_GroupPolygonsFile(t *testing.T) {
131131
assert.NotEqual(t, staticResource.Content(), themedResource.Content())
132132
}
133133

134-
// a black svg object omits the fill tag, this checks it it still properly updated
134+
// a black svg object omits the fill tag, this checks if it still properly updated
135135
func TestThemedResource_Content_BlackFillIsUpdated(t *testing.T) {
136136
fyne.CurrentApp().Settings().SetTheme(DarkTheme())
137137
staticResource := helperLoadRes(t, "cancel_PathsBlackFill.svg")

widget/check.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func (c *Check) Bind(data binding.Bool) {
6363
}
6464
}
6565

66-
// SetChecked sets the the checked state and refreshes widget
66+
// SetChecked sets the checked state and refreshes widget
6767
func (c *Check) SetChecked(checked bool) {
6868
if checked == c.Checked {
6969
return

0 commit comments

Comments
 (0)