diff --git a/examples/git.zig b/examples/git.zig index 93196ff..21f8c1a 100644 --- a/examples/git.zig +++ b/examples/git.zig @@ -25,7 +25,7 @@ pub fn main() anyerror!void { var cmd_push = Command.new(allocator, "push"); try cmd_push.takesSingleValue("REMOTE"); try cmd_push.takesSingleValue("BRANCH_NAME"); - try cmd_push.argRequired(true); + cmd_push.argRequired(true); try git.addSubcommand(Command.new(allocator, "init")); try git.addSubcommand(cmd_commit);