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)