diff --git a/internal/executor/delete.go b/internal/executor/delete.go index 7de803f..8bfe8a9 100644 --- a/internal/executor/delete.go +++ b/internal/executor/delete.go @@ -62,7 +62,7 @@ func (d *DeleteExecutor) deleteStatus(gtsClient *client.Client) error { } if status.Account.ID != myAccountID { - return errors.New("unable to delete the status because you are not the owner") + return errors.New("unable to delete the status because the status does not belong to you") } text, err := gtsClient.DeleteStatus(d.statusID) @@ -91,7 +91,7 @@ func (d *DeleteExecutor) deleteStatus(gtsClient *client.Client) error { return fmt.Errorf("unable to save the text to %q: %w", path, err) } - d.printer.PrintSuccess("The status' text was successfully written to '" + path + "'.") + d.printer.PrintSuccess("The text was successfully saved to '" + path + "'.") } return nil