mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-24 06:22:23 -05:00
Trim before checking if the hint is empty
This commit is contained in:
parent
d6bb27ec20
commit
d83cc69afe
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ fn check_info_file_exercises(info_file: &InfoFile) -> Result<hashbrown::HashSet<
|
|||
}
|
||||
}
|
||||
|
||||
if exercise_info.hint.is_empty() {
|
||||
if exercise_info.hint.trim().is_empty() {
|
||||
bail!("The exercise `{}` has an empty hint. Please provide a hint or at least tell the user why a hint isn't needed for this exercise", exercise_info.name);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue