Skip to content

Commit d62da8f

Browse files
refactor: improve error message for subsystem namespacing
1 parent e0ae7a9 commit d62da8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ function check_subsystems(systems)
212212
idxs = findall(!does_namespacing, systems)
213213
if !isempty(idxs)
214214
names = join(" " .* string.(nameof.(systems[idxs])), "\n")
215-
throw(ArgumentError("All subsystems have namespacing enabled. The following subsystems do not perform namespacing:\n$(names)"))
215+
throw(ArgumentError("All subsystems must have namespacing enabled. The following subsystems do not perform namespacing:\n$(names)"))
216216
end
217217
end
218218

0 commit comments

Comments
 (0)