Skip to content

docs: fix doc links #382

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 9, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions openfeature/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ func (c *Client) ObjectValueDetails(ctx context.Context, flag string, defaultVal

// Boolean performs a flag evaluation that returns a boolean. Any error
// encountered during the evaluation will result in the default value being
// returned. To explicitly handle errors, use [BooleanValue] or [BooleanValueDetails]
// returned. To explicitly handle errors, use [Client.BooleanValue] or [Client.BooleanValueDetails]
//
// Parameters:
// - ctx is the standard go context struct used to manage requests (e.g. timeouts)
Expand All @@ -588,7 +588,7 @@ func (c *Client) Boolean(ctx context.Context, flag string, defaultValue bool, ev

// String performs a flag evaluation that returns a string. Any error
// encountered during the evaluation will result in the default value being
// returned. To explicitly handle errors, use [StringValue] or [StringValueDetails]
// returned. To explicitly handle errors, use [Client.StringValue] or [Client.StringValueDetails]
//
// Parameters:
// - ctx is the standard go context struct used to manage requests (e.g. timeouts)
Expand All @@ -604,7 +604,7 @@ func (c *Client) String(ctx context.Context, flag string, defaultValue string, e

// Float performs a flag evaluation that returns a float64. Any error
// encountered during the evaluation will result in the default value being
// returned. To explicitly handle errors, use [FloatValue] or [FloatValueDetails]
// returned. To explicitly handle errors, use [Client.FloatValue] or [Client.FloatValueDetails]
//
// Parameters:
// - ctx is the standard go context struct used to manage requests (e.g. timeouts)
Expand All @@ -620,7 +620,7 @@ func (c *Client) Float(ctx context.Context, flag string, defaultValue float64, e

// Int performs a flag evaluation that returns an int64. Any error
// encountered during the evaluation will result in the default value being
// returned. To explicitly handle errors, use [IntValue] or [IntValueDetails]
// returned. To explicitly handle errors, use [Client.IntValue] or [Client.IntValueDetails]
//
// Parameters:
// - ctx is the standard go context struct used to manage requests (e.g. timeouts)
Expand All @@ -636,7 +636,7 @@ func (c *Client) Int(ctx context.Context, flag string, defaultValue int64, evalC

// Object performs a flag evaluation that returns an object. Any error
// encountered during the evaluation will result in the default value being
// returned. To explicitly handle errors, use [ObjectValue] or [ObjectValueDetails]
// returned. To explicitly handle errors, use [Client.ObjectValue] or [Client.ObjectValueDetails]
//
// Parameters:
// - ctx is the standard go context struct used to manage requests (e.g. timeouts)
Expand Down
Loading