mirror of
https://github.com/hannobraun/Fornjot
synced 2025-10-01 13:38:21 +00:00
Update doc comment
This commit is contained in:
parent
d80ceffd70
commit
f4442bc390
@ -47,8 +47,11 @@ macro_rules! validate_references {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Validation errors for when an object is referenced by multiple other objects. Each object
|
/// Object that should be exclusively owned by another, is not
|
||||||
/// should only be referenced by a single other object
|
///
|
||||||
|
/// 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)]
|
#[derive(Clone, Debug, thiserror::Error)]
|
||||||
pub enum ObjectNotExclusivelyOwned {
|
pub enum ObjectNotExclusivelyOwned {
|
||||||
/// [`Region`] referenced by more than one [`Face`]
|
/// [`Region`] referenced by more than one [`Face`]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user