mirror of
https://github.com/Dummi26/mers.git
synced 2025-12-14 11:16:17 +01:00
fixed tuple reversing type order when initializing
and try's error message now starts counting at Function #1 instead of #0.
This commit is contained in:
@@ -75,7 +75,7 @@ impl Config {
|
||||
for (i, err) in func_errors.into_iter().enumerate() {
|
||||
if let Some(err) = err {
|
||||
e = e
|
||||
.msg(format!("Error for function #{i}:"))
|
||||
.msg(format!("Error for function #{}:", i + 1))
|
||||
.err(err);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user