Skip to content

Commit 40bfa54

Browse files
committed
fix(*): fix typos in messages
1 parent 4eab6b5 commit 40bfa54

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/pago/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ func copyToClipboard(command string, text string) error {
274274
cmd.Stdin = strings.NewReader(text)
275275

276276
if err := cmd.Run(); err != nil {
277-
return fmt.Errorf("failed to rub clipboard command: %v", err)
277+
return fmt.Errorf("failed to run clipboard command: %v", err)
278278
}
279279

280280
return nil

test/e2e_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ func TestRewrap(t *testing.T) {
533533

534534
_, err = c.ExpectString("Enter password")
535535
if err != nil {
536-
return "", fmt.Errorf("failed to get passworr prompt for `show`: %w", err)
536+
return "", fmt.Errorf("failed to get password prompt for `show`: %w", err)
537537
}
538538
_, _ = c.SendLine(newPassword)
539539

0 commit comments

Comments
 (0)