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

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

Issue 13776004: Fix a few dartdoc comments (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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/socket.dart
diff --git a/sdk/lib/io/socket.dart b/sdk/lib/io/socket.dart
index 1680f6b805f37c7bdcf360fb0842dac4bfec840b..ac3444c1e68b586d880014fca9387cdc3d913b92 100644
--- a/sdk/lib/io/socket.dart
+++ b/sdk/lib/io/socket.dart
@@ -125,7 +125,7 @@ class RawSocketEvent {
*/
abstract class RawSocket implements Stream<RawSocketEvent> {
/**
- * Creats a new socket connection to the host and port and returns a [Future]
+ * Creates a new socket connection to the host and port and returns a [Future]
* that will complete with either a [RawSocket] once connected or an error
* if the host-lookup or connection failed.
*/
@@ -216,7 +216,7 @@ abstract class Socket implements Stream<List<int>>,
IOSink<Socket> {
/**
* Creats a new socket connection to the host and port and returns a [Future]
- * that will complete with either a [RawSocket] once connected or an error
+ * that will complete with either a [Socket] once connected or an error
* if the host-lookup or connection failed.
*/
external static Future<Socket> connect(String host, int port);
« 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