diff options
Diffstat (limited to 'mling')
| -rw-r--r-- | mling/src/cli/list.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mling/src/cli/list.rs b/mling/src/cli/list.rs index 9aff22b..faf1866 100644 --- a/mling/src/cli/list.rs +++ b/mling/src/cli/list.rs @@ -111,7 +111,7 @@ fn print_list(title: String, list: Vec<String>, r: &mut RenderResult) { let mut i = 1; for namespace in list.iter() { - r_println!(" {}. {}\n", i.to_string(), namespace.bold()); + r_println!(" {}. {}", i.to_string(), namespace.bold()); i += 1; } } |
