| Index: sdk/lib/io/socket.dart
|
| diff --git a/sdk/lib/io/socket.dart b/sdk/lib/io/socket.dart
|
| index a74f2a1326253b54ac727220d610ce949590dcff..1f1211a49d24ce05bc1cadd8b4a18226be1380c5 100644
|
| --- a/sdk/lib/io/socket.dart
|
| +++ b/sdk/lib/io/socket.dart
|
| @@ -345,6 +345,9 @@ abstract class RawSocket implements Stream<RawSocketEvent> {
|
| * the socket. The number of successfully written bytes is returned. This
|
| * function is non-blocking and will only write data if buffer space is
|
| * available in the socket.
|
| + *
|
| + * The default value for [offset] is 0, and the default value for [count] is
|
| + * [:buffer.length - offset:].
|
| */
|
| int write(List<int> buffer, [int offset, int count]);
|
|
|
|
|