mirror of
https://github.com/martinvonz/jj.git
synced 2024-12-26 14:00:51 +00:00
git: remove trailing single quotes from error messages
This commit is contained in:
parent
81ba65e3a5
commit
4594932fc0
1 changed files with 2 additions and 2 deletions
|
@ -158,9 +158,9 @@ pub fn fetch(
|
|||
pub enum GitPushError {
|
||||
#[error("No git remote named '{0}'")]
|
||||
NoSuchRemote(String),
|
||||
#[error("Push is not fast-forwardable'")]
|
||||
#[error("Push is not fast-forwardable")]
|
||||
NotFastForward,
|
||||
#[error("Remote reject the update'")]
|
||||
#[error("Remote reject the update")]
|
||||
RefUpdateRejected,
|
||||
// TODO: I'm sure there are other errors possible, such as transport-level errors,
|
||||
// and errors caused by the remote rejecting the push.
|
||||
|
|
Loading…
Reference in a new issue