File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,14 @@ pub enum Ancestry {
20
20
/// The event or span is an explicitly defined root. It was created with `parent: None` and
21
21
/// has no parent.
22
22
IsExplicitRoot ,
23
- /// The event or span has a contextually assigned parent with the specified name. Additionally,
24
- /// it has no explicitly assigned parent.
23
+ /// The event or span has a contextually assigned parent with the specified name. It has no
24
+ /// explicitly assigned parent, nor has it been explicitly defined as a root (it was created
25
+ /// without the `parent:` directive). There was a span in context when this event or span was
26
+ /// created.
25
27
HasContextualParent ( String ) ,
26
- /// The event or span is a contextual root. It has no contextual parent and also has no
27
- /// explicitly assigned parent.
28
+ /// The event or span is a contextual root. It has no explicitly assigned parent, nor has it
29
+ /// been explicitly defined as a root (it was created without the `parent:` directive).
30
+ /// Additionally, no span was in context when this event or span was created.
28
31
IsContextualRoot ,
29
32
}
30
33
You can’t perform that action at this time.
0 commit comments