Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
oguzhankoral committed Nov 13, 2024
1 parent b2b8791 commit 1c8fe89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SpeckleAutomateDotnetExample/AutomateFunction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ IEnumerable<ObjectToCheck> failedObjects
if (failedObject.UValue == 0)
{
message =
$"{speckleTypeString[..^1]} has no any material that have thermal properties.";
$"{speckleTypeString} has no any material that have thermal properties.";
}
else
{
message =
$"{speckleTypeString[..^1]} expected to have maximum {failedObject.ExpectedUValue} U-value but it is {failedObject.UValue}.";
$"{speckleTypeString} expected to have maximum {failedObject.ExpectedUValue} U-value but it is {failedObject.UValue}.";
}

automationContext.AttachResultToObjects(
Expand Down

0 comments on commit 1c8fe89

Please sign in to comment.