Skip to content

Commit

Permalink
Fix typos in Importer3mf and Assembly error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
3dJan committed Oct 11, 2024
1 parent 915d30e commit ee5a8a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gladius/src/io/3mf/Importer3mf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,7 @@ namespace gladius::io
model3mf->MergeFromModel(modelToMerge.get());

loadImageStacks(filename, model3mf, doc);
loadImplicitFunctions(model3mf, doc);
loadImplicitFunctions(model3mf, doc);
}
catch (Lib3MF::ELib3MFException const & e)
{
Expand Down
2 changes: 1 addition & 1 deletion gladius/src/nodes/Assembly.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ namespace gladius::nodes
if (!referencedModel)
{
throw std::runtime_error(
fmt::format("{} references a function with the fucntion id {}, that could not be found found", functionCall.getDisplayName(), referencedId));
fmt::format("{} references a function with the fucntion id {}, that could not be found", functionCall.getDisplayName(), referencedId));
}

functionCall.updateInputsAndOutputs(*referencedModel);
Expand Down

0 comments on commit ee5a8a8

Please sign in to comment.