diff --git a/crates/fj-core/src/validate/references.rs b/crates/fj-core/src/validate/references.rs index d33439c21..4b4ecaf2c 100644 --- a/crates/fj-core/src/validate/references.rs +++ b/crates/fj-core/src/validate/references.rs @@ -47,8 +47,11 @@ macro_rules! validate_references { }; } -/// Validation errors for when an object is referenced by multiple other objects. Each object -/// should only be referenced by a single other object +/// Object that should be exclusively owned by another, is not +/// +/// Some objects are expected to be "owned" by a single other object. This means +/// that only one reference to these objects must exist within the topological +/// object graph. #[derive(Clone, Debug, thiserror::Error)] pub enum ObjectNotExclusivelyOwned { /// [`Region`] referenced by more than one [`Face`]