Skip to content

Commit 98a2ae1

Browse files
committed
fix: correct typo in error message for required brick variable
1 parent c264066 commit 98a2ae1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/orchestrator/bricks/bricks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ func (s *Service) BrickCreate(
283283
return fmt.Errorf("variable %q does not exist on brick %q", name, brick.ID)
284284
}
285285
if value.IsRequired() && reqValue == "" {
286-
return fmt.Errorf("requried variable %q cannot be empty", name)
286+
return fmt.Errorf("required variable %q cannot be empty", name)
287287
}
288288
}
289289

0 commit comments

Comments
 (0)