| Index: sdk/lib/io/socket.dart
|
| diff --git a/sdk/lib/io/socket.dart b/sdk/lib/io/socket.dart
|
| index b64eb75f30dc26d40b274029a06f460a832ce7e4..717bb591639b472ca3a9580a7ea10bbbdbbfe8f9 100644
|
| --- a/sdk/lib/io/socket.dart
|
| +++ b/sdk/lib/io/socket.dart
|
| @@ -450,8 +450,8 @@ abstract class RawSocket implements Stream<RawSocketEvent> {
|
| *
|
| * [host] can either be a [String] or an [InternetAddress]. If [host] is a
|
| * [String], [connect] will perform a [InternetAddress.lookup] and try
|
| - * all returned [InternetAddress]es, in turn, until connected. Unless a
|
| - * connection was established, the error from the first attempt is
|
| + * all returned [InternetAddress]es, until connected. Unless a
|
| + * connection was established, the error from the first failing connection is
|
| * returned.
|
| */
|
| external static Future<RawSocket> connect(host, int port);
|
| @@ -543,8 +543,8 @@ abstract class Socket implements Stream<List<int>>, IOSink {
|
| *
|
| * [host] can either be a [String] or an [InternetAddress]. If [host] is a
|
| * [String], [connect] will perform a [InternetAddress.lookup] and try
|
| - * all returned [InternetAddress]es, in turn, until connected. Unless a
|
| - * connection was established, the error from the first attempt is
|
| + * all returned [InternetAddress]es, until connected. Unless a
|
| + * connection was established, the error from the first failing connection is
|
| * returned.
|
| */
|
| external static Future<Socket> connect(host, int port);
|
|
|