From 77970c597f7a33cae6a88a516c504f9ea2fdc0e6 Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Sun, 30 Nov 2025 11:10:32 +0000 Subject: [PATCH] Fix doc comments in Process.fs The Exec functions have a parameter called 'dir' but the doc comments have 'directory', so this just makes them consistent --- src/app/Fake.Core.Process/Process.fs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/Fake.Core.Process/Process.fs b/src/app/Fake.Core.Process/Process.fs index ad10d1575bb..f8c3cebbb2b 100644 --- a/src/app/Fake.Core.Process/Process.fs +++ b/src/app/Fake.Core.Process/Process.fs @@ -927,12 +927,12 @@ type Shell private () = Args = [] } /// - /// Runs the given process, waits for it's completion and returns the exit code. + /// Runs the given process, waits for its completion and returns the exit code. /// /// /// The command which should be run in elevated context. /// The process arguments (optional). - /// The working directory (optional). + /// The working directory (optional). static member Exec(cmd, ?args, ?dir) = Process.shellExec (Shell.GetParams(cmd, ?args = args, ?dir = dir)) @@ -942,7 +942,7 @@ type Shell private () = /// /// The command which should be run in elevated context. /// The process arguments (optional). - /// The working directory (optional). + /// The working directory (optional). static member AsyncExec(cmd, ?args, ?dir) = let internalArgs = Shell.GetParams(cmd, ?args = args, ?dir = dir)