ok/jj
1
0
Fork 0
forked from mirrors/jj

cli: adjust error message for dummy revert command

This commit is contained in:
Ilya Grigoriev 2023-11-17 19:30:42 -08:00
parent a3d36b577e
commit 1c5d0e0d63

View file

@ -205,7 +205,7 @@ pub fn run_command(ui: &mut Ui, command_helper: &CommandHelper) -> Result<(), Co
fn revert() -> Result<(), CommandError> {
Err(user_error_with_hint(
"No such subcommand",
"No such subcommand: revert",
"Consider `jj backout` or `jj restore`",
))
}