Skip to content

Commit 5127dae

Browse files
alichraghiandrewrk
authored andcommitted
std.os: fix execv* doc comment
1 parent ca1c185 commit 5127dae

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/std/os.zig

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1753,8 +1753,6 @@ pub const ExecveError = error{
17531753
NameTooLong,
17541754
} || UnexpectedError;
17551755

1756-
/// Like `execve` except the parameters are null-terminated,
1757-
/// matching the syscall API on all targets. This removes the need for an allocator.
17581756
/// This function ignores PATH environment variable. See `execvpeZ` for that.
17591757
pub fn execveZ(
17601758
path: [*:0]const u8,
@@ -1852,8 +1850,6 @@ pub fn execvpeZ_expandArg0(
18521850
return err;
18531851
}
18541852

1855-
/// Like `execvpe` except the parameters are null-terminated,
1856-
/// matching the syscall API on all targets. This removes the need for an allocator.
18571853
/// This function also uses the PATH environment variable to get the full path to the executable.
18581854
/// If `file` is an absolute path, this is the same as `execveZ`.
18591855
pub fn execvpeZ(

0 commit comments

Comments
 (0)