From 149d1fd3406a0f8b8a7c6a10c55e1cec0b00d89f Mon Sep 17 00:00:00 2001 From: Serena Zam Date: Wed, 1 Mar 2023 10:59:38 -0600 Subject: [PATCH] Improve documentation in config.go --- config.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.go b/config.go index 4a7ae1d..f80a2ac 100644 --- a/config.go +++ b/config.go @@ -47,7 +47,8 @@ type Config struct { // NoParent decides if a root span should be initiated in the case where there is no existing parent // This value is ignored if ParentBased = "ignore" - // "never" is the default value + // NoParent = "never" (default), root spans are not initiated + // NoParent = "always", roots spans are initiated NoParent string `json:"noParent"` }