diff --git a/sdk/lib/io/process.dart b/sdk/lib/io/process.dart index e6f4d3f4bf0d..b810be4bfd8c 100644 --- a/sdk/lib/io/process.dart +++ b/sdk/lib/io/process.dart @@ -430,7 +430,7 @@ abstract interface class Process { /// /// Returns a `Future` that completes with the /// result of running the process, i.e., exit code, standard out and - /// standard in. + /// standard error. /// /// The following code uses `Process.run` to grep for `main` in the /// file `test.dart` on Linux. @@ -456,7 +456,7 @@ abstract interface class Process { /// The arguments are the same as for [Process.run]. /// /// Returns a [ProcessResult] with the result of running the process, - /// i.e., exit code, standard out and standard in. + /// i.e., exit code, standard out and standard error. external static ProcessResult runSync( String executable, List arguments, {