diff options
author | Aylur <[email protected]> | 2024-10-23 20:37:32 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-10-23 20:37:32 +0000 |
commit | 306e64998c1bf1fb997c1098ae92d6edfef31cd2 (patch) | |
tree | 1f852514d269f9ad1d3523771e9119760ace6948 /lib/astal/io/process.vala | |
parent | 72670224a49cf22779b56eabce0d9ce71bfb5486 (diff) |
docs: astal3 and io comments
Diffstat (limited to 'lib/astal/io/process.vala')
-rw-r--r-- | lib/astal/io/process.vala | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/astal/io/process.vala b/lib/astal/io/process.vala index 8767012..cfd05b9 100644 --- a/lib/astal/io/process.vala +++ b/lib/astal/io/process.vala @@ -1,5 +1,5 @@ /** - * `Process` provides shortcuts for [[email protected]] with sane defaults. + * `Process` provides shortcuts for [[email protected]] with sane defaults. */ public class AstalIO.Process : Object { private void read_stream(DataInputStream stream, bool err) { @@ -92,7 +92,7 @@ public class AstalIO.Process : Object { /** * Start a new subprocess with the given command - * which is parsed using [[email protected]_argv]. + * which is parsed using [[email protected]_parse_argv]. */ public static Process subprocess(string cmd) throws Error { string[] argv; @@ -125,7 +125,7 @@ public class AstalIO.Process : Object { /** * Execute a command synchronously. - * The command is parsed using [[email protected]_argv]. + * The command is parsed using [[email protected]_parse_argv]. * * @return stdout of the subprocess */ @@ -160,7 +160,7 @@ public class AstalIO.Process : Object { /** * Execute a command asynchronously. - * The command is parsed using [[email protected]_argv]. + * The command is parsed using [[email protected]_parse_argv]. * * @return stdout of the subprocess */ |