diff --git a/lib/std/process.zig b/lib/std/process.zig index 578efa62c4c0511fbffbe602f1a36838ecfbab45..87dbed443f7c5227e3fbe617c0590dca408656be 100644 --- a/lib/std/process.zig +++ b/lib/std/process.zig @@ -818,7 +818,8 @@ pub const ArgIterator = struct { } }; -/// Use argsWithAllocator() for cross-platform code +/// Holds the command-line arguments, with the program name as the first entry. +/// Use argsWithAllocator() for cross-platform code. pub fn args() ArgIterator { return ArgIterator.init(); }