Skip to content

Commit

Permalink
Exposed indent_fmt for Values
Browse files Browse the repository at this point in the history
- Ensured that `indent_fmt` is properly exposed in `Value.Custom` for library users.
  • Loading branch information
00JCIV00 committed Jul 1, 2024
1 parent 2951636 commit cb63b1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Value.zig
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ pub fn Custom(comptime config: Config) type {
pub const vals_usage_fmt = config.usage_fmt;
/// Values Indent Format.
/// Check (`Value.Config`) for details.
pub const indent_fmt = config.indent_fmt;
pub const indent_fmt = config.indent_fmt orelse CommandT.indent_fmt;

/// Get the Parsed and Validated Value of the inner Typed Value.
/// Comptime Only
Expand Down

0 comments on commit cb63b1a

Please sign in to comment.