From 9013ad6a6a8b4a4533ecb597ca7aa6a5f481ba80 Mon Sep 17 00:00:00 2001 From: Matt Goodall Date: Wed, 11 Jul 2012 15:55:37 +0100 Subject: [PATCH] Remove extra "has" from func comment. --- src/xmpp/stream.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xmpp/stream.go b/src/xmpp/stream.go index 1cb4521..2dd7a0b 100644 --- a/src/xmpp/stream.go +++ b/src/xmpp/stream.go @@ -107,8 +107,8 @@ func (stream *Stream) Next(match *xml.Name) (*xml.StartElement, error) { panic("Unreachable") } -// Skip reads tokens until it has reaches the end element of the most recent -// start element that has already been read. +// Skip reads tokens until it reaches the end element of the most recent start +// element that has already been read. func (stream *Stream) Skip() error { return stream.dec.Skip() }