@@ -572,7 +572,7 @@ func (c *Client) ObjectValueDetails(ctx context.Context, flag string, defaultVal
572572
573573// Boolean performs a flag evaluation that returns a boolean. Any error
574574// encountered during the evaluation will result in the default value being
575- // returned. To explicitly handle errors, use [BooleanValue] or [BooleanValueDetails]
575+ // returned. To explicitly handle errors, use [Client. BooleanValue] or [Client. BooleanValueDetails]
576576//
577577// Parameters:
578578// - ctx is the standard go context struct used to manage requests (e.g. timeouts)
@@ -588,7 +588,7 @@ func (c *Client) Boolean(ctx context.Context, flag string, defaultValue bool, ev
588588
589589// String performs a flag evaluation that returns a string. Any error
590590// encountered during the evaluation will result in the default value being
591- // returned. To explicitly handle errors, use [StringValue] or [StringValueDetails]
591+ // returned. To explicitly handle errors, use [Client. StringValue] or [Client. StringValueDetails]
592592//
593593// Parameters:
594594// - ctx is the standard go context struct used to manage requests (e.g. timeouts)
@@ -604,7 +604,7 @@ func (c *Client) String(ctx context.Context, flag string, defaultValue string, e
604604
605605// Float performs a flag evaluation that returns a float64. Any error
606606// encountered during the evaluation will result in the default value being
607- // returned. To explicitly handle errors, use [FloatValue] or [FloatValueDetails]
607+ // returned. To explicitly handle errors, use [Client. FloatValue] or [Client. FloatValueDetails]
608608//
609609// Parameters:
610610// - ctx is the standard go context struct used to manage requests (e.g. timeouts)
@@ -620,7 +620,7 @@ func (c *Client) Float(ctx context.Context, flag string, defaultValue float64, e
620620
621621// Int performs a flag evaluation that returns an int64. Any error
622622// encountered during the evaluation will result in the default value being
623- // returned. To explicitly handle errors, use [IntValue] or [IntValueDetails]
623+ // returned. To explicitly handle errors, use [Client. IntValue] or [Client. IntValueDetails]
624624//
625625// Parameters:
626626// - ctx is the standard go context struct used to manage requests (e.g. timeouts)
@@ -636,7 +636,7 @@ func (c *Client) Int(ctx context.Context, flag string, defaultValue int64, evalC
636636
637637// Object performs a flag evaluation that returns an object. Any error
638638// encountered during the evaluation will result in the default value being
639- // returned. To explicitly handle errors, use [ObjectValue] or [ObjectValueDetails]
639+ // returned. To explicitly handle errors, use [Client. ObjectValue] or [Client. ObjectValueDetails]
640640//
641641// Parameters:
642642// - ctx is the standard go context struct used to manage requests (e.g. timeouts)
0 commit comments