From 30441cacf40d937f3169c4c4ab51c2d53cdb000d Mon Sep 17 00:00:00 2001 From: Matt Goodall Date: Wed, 11 Jul 2012 23:24:26 +0100 Subject: [PATCH] Fix typo. --- src/xmpp/stream.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xmpp/stream.go b/src/xmpp/stream.go index 2dd7a0b..213dca5 100644 --- a/src/xmpp/stream.go +++ b/src/xmpp/stream.go @@ -40,7 +40,7 @@ func NewStream(addr string) (*Stream, error) { return stream, nil } -// Upgrade the stream's underlying net conncetion to TLS. +// Upgrade the stream's underlying net connection to TLS. func (stream *Stream) UpgradeTLS(config *tls.Config) error { conn := tls.Client(stream.conn, config)