From cf4f07b8374a07585dec95c5953ac720f35f7998 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sat, 25 Nov 2023 16:01:58 -0800 Subject: [PATCH] Correct a misseplling --- fish-rust/src/fork_exec/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish-rust/src/fork_exec/mod.rs b/fish-rust/src/fork_exec/mod.rs index aa25b9ec3..55b818570 100644 --- a/fish-rust/src/fork_exec/mod.rs +++ b/fish-rust/src/fork_exec/mod.rs @@ -1,4 +1,4 @@ -// A mdoule concerned with the exec side of fork/exec. +// A module concerned with the exec side of fork/exec. // This concerns posix_spawn support, and async-signal // safe code which happens in between fork and exec.