fix type for Runner.args
This commit is contained in:
parent
5e8093b26f
commit
ebf716de17
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ pub const Runner = struct {
|
|||
/// If the runner is in REPL mode
|
||||
repl: bool,
|
||||
|
||||
args: [][]u8,
|
||||
args: []const [:0]u8,
|
||||
|
||||
pub fn init(allocator: *std.mem.Allocator, repl: bool) Runner {
|
||||
return Runner{
|
||||
|
|
Loading…
Reference in a new issue