Fix typo in Socket.connect

BUG: https://code.google.com/p/dart/issues/detail?id=20198

R=kevmoo@google.com

Review URL: https://codereview.chromium.org//420683002

Patch from Kenneth Endfinger <kaendfinger@gmail.com>.

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38578 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
kevmoo@google.com 2014-07-25 18:14:51 +00:00
parent e79c05c9d2
commit 3ff56268eb

View file

@ -537,7 +537,7 @@ abstract class RawSocket implements Stream<RawSocketEvent> {
*/
abstract class Socket implements Stream<List<int>>, IOSink {
/**
* 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 [Socket] once connected or an error
* if the host-lookup or connection failed.
*