We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f28df9a commit 087fa89Copy full SHA for 087fa89
1 file changed
crates/fspy_shared_unix/src/spawn/mod.rs
@@ -26,8 +26,9 @@ use crate::{
26
/// # Errors
27
///
28
/// Returns an error if:
29
-/// - Program resolution fails (from `command.resolve()`)
30
-/// - Environment variable operations fail
+/// - Program resolution fails (see [`Exec::resolve`] error variants, such as `ENOENT` (file not found) or `EACCES` (permission denied))
+/// - Environment variable operations fail (e.g., `ensure_env` may return `EINVAL` if an existing value conflicts)
31
+/// - Platform-specific errors from [`os_specific::handle_exec`]
32
pub fn handle_exec(
33
command: &mut Exec,
34
config: ExecResolveConfig,
0 commit comments