From 295163659e2b8a593bf609bf9412905b52f88e10 Mon Sep 17 00:00:00 2001 From: 00JCIV00 Date: Mon, 1 Jul 2024 14:30:27 -0400 Subject: [PATCH] Exposed indent_fmt for Values - Ensured that `indent_fmt` is properly exposed in `Value.Custom` for library users. --- src/Value.zig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Value.zig b/src/Value.zig index 7fca822..ed32567 100644 --- a/src/Value.zig +++ b/src/Value.zig @@ -602,6 +602,9 @@ pub fn Custom(comptime config: Config) type { /// Values Usage Format. /// Check (`Value.Config`) for details. pub const vals_usage_fmt = config.usage_fmt; + /// Values Indent Format. + /// Check (`Value.Config`) for details. + pub const indent_fmt = config.indent_fmt; /// Get the Parsed and Validated Value of the inner Typed Value. /// Comptime Only