Comment reformat.
--- 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.