From 065ac395f05a98a06308de3e67d39913225e1bcd Mon Sep 17 00:00:00 2001 From: "sgjesse@google.com" Date: Mon, 8 Apr 2013 08:09:15 +0000 Subject: [PATCH] Fix a few dartdoc comments TBR=ager@google.com BUG=https://code.google.com/p/dart/issues/detail?id=9684 Review URL: https://codereview.chromium.org//13776004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@21050 260f80e4-7a28-3924-810f-c04153c831b5 --- sdk/lib/io/socket.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/lib/io/socket.dart b/sdk/lib/io/socket.dart index 1680f6b805f..ac3444c1e68 100644 --- a/sdk/lib/io/socket.dart +++ b/sdk/lib/io/socket.dart @@ -125,7 +125,7 @@ class RawSocketEvent { */ abstract class RawSocket implements Stream { /** - * 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>, IOSink { /** * 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 connect(String host, int port);