Comment reformat.
authorChris Jones <chris@cjones.org>
Sat, 07 Jan 2012 20:41:16 -0700
changeset 59 be6815a9653a
parent 58 c0e8778bdb80
child 60 6d4f43f7dc19
Comment reformat.
stream.go
structs.go
xmpp.go
--- a/stream.go	Thu Jan 05 23:19:42 2012 -0700
+++ b/stream.go	Sat Jan 07 20:41:16 2012 -0700
@@ -404,7 +404,7 @@
 	cl.socketSync.Done()
 }
 
-// BUG(cjyar) Doesn't implement TLS/SASL EXTERNAL.
+// BUG(cjyar): Doesn't implement TLS/SASL EXTERNAL.
 func (cl *Client) chooseSasl(fe *Features) {
 	var digestMd5 bool
 	for _, m := range(fe.Mechanisms.Mechanism) {
--- a/structs.go	Thu Jan 05 23:19:42 2012 -0700
+++ b/structs.go	Sat Jan 07 20:41:16 2012 -0700
@@ -94,6 +94,7 @@
 	// A nested error element, if any.
 	GetError() *Error
 	// A (non-error) nested element, if any.
+	// BUG(cjyar) This should return a slice.
 	GetNested() interface{}
 	setNested(interface{})
 	generic() *Generic
--- a/xmpp.go	Thu Jan 05 23:19:42 2012 -0700
+++ b/xmpp.go	Sat Jan 07 20:41:16 2012 -0700
@@ -96,7 +96,7 @@
 }
 var _ io.Closer = &Client{}
 
-// BUG(cjyar) Replace extStanza with a generalized extension interface
+// BUG(cjyar): Replace extStanza with a generalized extension interface
 // that handles starting filters, registering extended stanzes, and
 // anything else an extension has to do.