Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

Commit

Permalink
Fix typo [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Bios-Marcel committed Oct 12, 2019
1 parent 34a7383 commit 1e4ae10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/commandimpls/friends.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ func (f *Friends) Execute(writer io.Writer, parameters []string) {
return
}

fmt.Fprintf(writer, "A friends-reuest has been sent to '%s'.\n", input)
fmt.Fprintf(writer, "A friends-request has been sent to '%s'.\n", input)
return
}

Expand All @@ -240,7 +240,7 @@ func (f *Friends) Execute(writer io.Writer, parameters []string) {
if requestError != nil {
fmt.Fprintf(writer, "Error sending friends-request (%s).\n", requestError)
} else {
fmt.Fprintf(writer, "A friends-reuest has been sent to '%s'.\n", user.String())
fmt.Fprintf(writer, "A friends-request has been sent to '%s'.\n", user.String())
}
} else {
fmt.Fprintf(writer, "Multiple matches were found for '%s'. Please be more precise.\n", input)
Expand Down

0 comments on commit 1e4ae10

Please sign in to comment.