diff options
| author | Jeffrey C. Ollie <jeff@ocjtech.us> | 2025-09-23 21:53:52 -0500 |
|---|---|---|
| committer | Jeffrey C. Ollie <jeff@ocjtech.us> | 2025-09-23 21:53:52 -0500 |
| commit | 5f3fd9742fb5eb68de945a37069e8b813ea6d667 (patch) | |
| tree | 8722143ac55858bf679d6a9aa309730770523589 /src/cli/args.zig | |
| parent | 5265414a36d9b5ad942ca997adf7348b8d0bd5d4 (diff) | |
rename Splitter-CommaSplitter
Diffstat (limited to 'src/cli/args.zig')
| -rw-r--r-- | src/cli/args.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/args.zig b/src/cli/args.zig index 9edb11b2b..2d2d199be 100644 --- a/src/cli/args.zig +++ b/src/cli/args.zig @@ -7,7 +7,7 @@ const diags = @import("diagnostics.zig"); const internal_os = @import("../os/main.zig"); const Diagnostic = diags.Diagnostic; const DiagnosticList = diags.DiagnosticList; -const Splitter = @import("Splitter.zig"); +const CommaSplitter = @import("CommaSplitter.zig"); const log = std.log.scoped(.cli); @@ -529,7 +529,7 @@ pub fn parseAutoStruct(comptime T: type, alloc: Allocator, v: []const u8) !T { var fields_set: FieldSet = .initEmpty(); // We split each value by "," allowing for quoting and escaping. - var iter: Splitter = .init(v); + var iter: CommaSplitter = .init(v); loop: while (try iter.next()) |entry| { // Find the key/value, trimming whitespace. The value may be quoted // which we strip the quotes from. |
