From 3871461df959effa2649e18669dc32a5221a7efa Mon Sep 17 00:00:00 2001 From: Josh Martin Date: Thu, 22 Jul 2021 19:55:38 -0700 Subject: [PATCH] Update xmpp_information_query.go (#130) Fix a typo in the code comments. --- xmpp_information_query.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmpp_information_query.go b/xmpp_information_query.go index 2a69922..7f6d9c1 100644 --- a/xmpp_information_query.go +++ b/xmpp_information_query.go @@ -23,7 +23,7 @@ func (c *Client) RawInformationQuery(from, to, id, iqType, requestNamespace, bod return id, err } -// rawInformation send a IQ request with the the payload body to the server +// rawInformation send a IQ request with the payload body to the server func (c *Client) RawInformation(from, to, id, iqType, body string) (string, error) { const xmlIQ = "%s" _, err := fmt.Fprintf(c.conn, xmlIQ, xmlEscape(from), xmlEscape(to), id, iqType, body)