Skip to content

Commit

Permalink
fixed naming inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
cqb13 committed Jul 22, 2024
1 parent 064776e commit aa8014f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/calculator/create/from_txt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn create_from_txt(
let line = file_string
.lines()
.nth(3)
.ok_or_else(|| "missing archived".to_string())?;
.ok_or_else(|| "missing destination".to_string())?;
let destination = Destination::from_string(line)?;
let line = file_string
.lines()
Expand Down

0 comments on commit aa8014f

Please sign in to comment.