`expect` is not used multitude times by this chapter

This commit is contained in:
JirCep 2022-08-03 22:14:44 +02:00
parent 36383b4da2
commit 15616bc09b
1 changed files with 7 additions and 7 deletions

View File

@ -23,13 +23,13 @@ example, the file could be missing, or we might not have permission to open it.
Right now, regardless of the situation, wed print the same error message for
everything, which wouldnt give the user any information!
Fourth, we use `expect` repeatedly to handle different errors, and if the user
runs our program without specifying enough arguments, theyll get an `index out
of bounds` error from Rust that doesnt clearly explain the problem. It would
be best if all the error-handling code were in one place so future maintainers
had only one place to consult the code if the error-handling logic needed to
change. Having all the error-handling code in one place will also ensure that
were printing messages that will be meaningful to our end users.
Fourth, if the user runs our program without specifying enough arguments,
theyll get an `index out of bounds` error from Rust that doesnt clearly
explain the problem. It would be best if all the error-handling code were
in one place so future maintainers had only one place to consult the code
if the error-handling logic needed to change. Having all the error-handling
code in one place will also ensure that were printing messages that
will be meaningful to our end users.
Lets address these four problems by refactoring our project.