Skip to content

Commit

Permalink
SPELL: Fixes misspellings in human facing error messages.
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Jackson <[email protected]>
  • Loading branch information
imikejackson committed Dec 6, 2024
1 parent 12ab792 commit fd9078b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/simplnx/Parameters/Dream3dImportParameter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ Result<> Dream3dImportParameter::validatePath(const ValueType& importData) const
}
} catch(const fs::filesystem_error& exception)
{
return MakeErrorResult(-5, fmt::format("Filesystem excpetion: {}", exception.what()));
return MakeErrorResult(-5, fmt::format("Filesystem exception: {}", exception.what()));
}
return {};
}
Expand Down
2 changes: 1 addition & 1 deletion src/simplnx/Parameters/GeneratedFileListParameter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ Result<> GeneratedFileListParameter::validate(const std::any& valueRef) const
}
} catch(const fs::filesystem_error& exception)
{
return MakeErrorResult(-4004, fmt::format("Filesystem excpetion: {}", exception.what()));
return MakeErrorResult(-4004, fmt::format("Filesystem exception: {}", exception.what()));
}
return {};
}
Expand Down

0 comments on commit fd9078b

Please sign in to comment.