Skip to content

Commit eb69196

Browse files
mernenCommit Queue
authored andcommitted
Fix documentation on Process.run
Closes #59938 GitOrigin-RevId: 1f9d3e9 Change-Id: I17c10c099d6dca54648e91040d39a97ba42d2519 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/405100 Commit-Queue: Kevin Moore <[email protected]> Reviewed-by: Kevin Moore <[email protected]>
1 parent dd9a061 commit eb69196

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/lib/io/process.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ abstract interface class Process {
430430
///
431431
/// Returns a `Future<ProcessResult>` that completes with the
432432
/// result of running the process, i.e., exit code, standard out and
433-
/// standard in.
433+
/// standard error.
434434
///
435435
/// The following code uses `Process.run` to grep for `main` in the
436436
/// file `test.dart` on Linux.
@@ -456,7 +456,7 @@ abstract interface class Process {
456456
/// The arguments are the same as for [Process.run].
457457
///
458458
/// Returns a [ProcessResult] with the result of running the process,
459-
/// i.e., exit code, standard out and standard in.
459+
/// i.e., exit code, standard out and standard error.
460460
external static ProcessResult runSync(
461461
String executable,
462462
List<String> arguments, {

0 commit comments

Comments
 (0)