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
This commit is contained in:
sgjesse@google.com 2013-04-08 08:09:15 +00:00
parent 24e3c0bbb0
commit 065ac395f0

View file

@ -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);