Skip to content

Commit

Permalink
Merge pull request #4780 from kindknow/develop
Browse files Browse the repository at this point in the history
chore: fix function name in comment
  • Loading branch information
dweymouth committed Apr 12, 2024
2 parents 58d0413 + 6a51a2e commit 23562bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/binding/queue_test.go
Expand Up @@ -14,7 +14,7 @@ func TestMain(m *testing.M) {
os.Exit(m.Run())
}

// TestQueryLazyInit resets the current unbounded func queue, and tests
// TestQueueLazyInit resets the current unbounded func queue, and tests
// if the queue is lazy initialized.
//
// Note that this test may fail, if any of other tests in this package
Expand Down
2 changes: 1 addition & 1 deletion widget/entry.go
Expand Up @@ -974,7 +974,7 @@ func (e *Entry) cursorTextPos() (pos int) {
return e.textPosFromRowCol(e.CursorRow, e.CursorColumn)
}

// copyToClipboard copies the current selection to a given clipboard and then removes the selected text.
// cutToClipboard copies the current selection to a given clipboard and then removes the selected text.
// This does nothing if it is a concealed entry.
func (e *Entry) cutToClipboard(clipboard fyne.Clipboard) {
if !e.selecting || e.Password {
Expand Down

0 comments on commit 23562bd

Please sign in to comment.