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

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

Issue 137953005: HttpSession: better toString() (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweaks, long lines 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 | « sdk/lib/io/http_session.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/io.dart
diff --git a/sdk/lib/io/io.dart b/sdk/lib/io/io.dart
index 59b06974b081362ab6d6d648bf295b0537abd753..974d2d1852b40193e957935ab1f6ac20a44a8c93 100644
--- a/sdk/lib/io/io.dart
+++ b/sdk/lib/io/io.dart
@@ -80,11 +80,12 @@
* process.exitCode.then(print);
* });
*
- * Using `start()` returns a Future, which completes with a [Process] object when
- * the process has started. This [Process] object allows you to interact with the
- * process while it is running. Using `run()` returns a Future, which completes with
- * a [ProcessResult] object when the spawned process has terminated. This
- * [ProcessResult] object collects the output and exit code from the process.
+ * Using `start()` returns a Future, which completes with a [Process] object
+ * when the process has started. This [Process] object allows you to interact
+ * with the process while it is running. Using `run()` returns a Future, which
+ * completes with a [ProcessResult] object when the spawned process has
+ * terminated. This [ProcessResult] object collects the output and exit code
+ * from the process.
*
* When using `start()`,
* you need to read all data coming on the stdout and stderr streams otherwise
@@ -92,8 +93,8 @@
*
* ## WebSocket
*
- * The [WebSocket] class provides support for the web socket protocol. This allows
- * full-duplex communications between client and server applications.
+ * The [WebSocket] class provides support for the web socket protocol. This
+ * allows full-duplex communications between client and server applications.
* Use the WebSocket class in the `dart:html` library for web clients.
*
* A web socket server uses a normal HTTP server for accepting web socket
@@ -147,7 +148,7 @@
*
* A client connects a Socket using the `connect()` method,
* which returns a Future.
- * Using `write()`, `writeln()`, or `writeAll()` are the easiest ways to
+ * Using `write()`, `writeln()`, or `writeAll()` are the easiest ways to
* send data over the socket.
* For example:
*
« no previous file with comments | « sdk/lib/io/http_session.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698