summaryrefslogtreecommitdiff
path: root/src/errors
diff options
context:
space:
mode:
Diffstat (limited to 'src/errors')
-rw-r--r--src/errors/merge_error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/errors/merge_error.rs b/src/errors/merge_error.rs
index 3ff60d2..d830d96 100644
--- a/src/errors/merge_error.rs
+++ b/src/errors/merge_error.rs
@@ -12,7 +12,7 @@ pub struct MergeError<'a> {
impl MergeError<'_> {
pub fn report(&self) {
- error!("A cyclic dependency was found between the following libraries:");
+ error!("A cyclic dependency was found between the following files:");
for id in &self.cyclic_unit_ids {
let unit = &self.resolver.source_units[*id];
let path = &unit.source_unit.path();