Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Unified Diff: sdk/lib/io/process.dart

Issue 140673002: Fix docs for Process::kill. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/process.dart
diff --git a/sdk/lib/io/process.dart b/sdk/lib/io/process.dart
index f9e2176db2968b3308ea3d0878251e4e31a31cb4..a59fc88d8b4e089926c392e8b91dfdbbceb39538 100644
--- a/sdk/lib/io/process.dart
+++ b/sdk/lib/io/process.dart
@@ -256,9 +256,9 @@ abstract class Process {
/**
* On Windows, [kill] kills the process, ignoring the [signal]
* flag. On Posix systems, [kill] sends [signal] to the
- * process. Depending on the signal giving, it'll have different
+ * process. Depending on the signal send, it'll have different
* meanings. When the process terminates as a result of calling
- * [kill] [onExit] is called.
+ * [kill], the [exitCode] future is completed with the exit code.
*
* Returns [:true:] if the process is successfully killed (the
* signal is successfully sent). Returns [:false:] if the process
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698