mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
ordinals instead of indexes when listing grammar fetch errors (#3773)
This commit is contained in:
parent
fae9203c3e
commit
01ee42bb14
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ pub fn fetch_grammars() -> Result<()> {
|
|||
let len = errors.len();
|
||||
println!("{} grammars failed to fetch", len);
|
||||
for (i, error) in errors.into_iter().enumerate() {
|
||||
println!("\tFailure {}/{}: {}", i, len, error);
|
||||
println!("\tFailure {}/{}: {}", i + 1, len, error);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue