diff --git a/src/term.rs b/src/term.rs index 62bebeec..3b95314e 100644 --- a/src/term.rs +++ b/src/term.rs @@ -459,7 +459,7 @@ impl Term { // We cannot move up n lines, only current_row ones. return Err(io::Error::new( io::ErrorKind::Other, - format!("can only move up {} lines, not {}", current_row, n) + format!("can only move up {} lines, not {}", current_row, n), )); } }