# HG changeset patch # User Chris Jones # Date 1325994076 25200 # Node ID be6815a9653a14546634078173366e513f278a71 # Parent c0e8778bdb80afd649d52245e1be8fee2eff9448 Comment reformat. diff -r c0e8778bdb80 -r be6815a9653a stream.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) { diff -r c0e8778bdb80 -r be6815a9653a structs.go --- 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 diff -r c0e8778bdb80 -r be6815a9653a xmpp.go --- 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.