fix type for Runner.args

This commit is contained in:
Luna 2020-11-08 18:47:40 -03:00
parent 5e8093b26f
commit ebf716de17
1 changed files with 1 additions and 1 deletions

View File

@ -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{