From 20edd46b1614c94ac1ba71215b9ee00544c0f753 Mon Sep 17 00:00:00 2001 From: Matt Tucker Date: Mon, 12 May 2003 16:14:19 +0000 Subject: [PATCH] Updated javadocs. git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1935 b35dd754-fafc-0310-a699-88a17e54d16e --- source/org/jivesoftware/smack/provider/IQProvider.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/org/jivesoftware/smack/provider/IQProvider.java b/source/org/jivesoftware/smack/provider/IQProvider.java index 464601930..50018dea3 100644 --- a/source/org/jivesoftware/smack/provider/IQProvider.java +++ b/source/org/jivesoftware/smack/provider/IQProvider.java @@ -65,11 +65,11 @@ import org.xmlpull.v1.XmlPullParser; public interface IQProvider { /** - * Parse the IQ sub-document and create an IQ instance. Each IQ must have a single - * sub-element At - * the beginning of the method call, the xml parser will be positioned directly - * after the opening <query> tag of the IQ packet. At the end of the method call, - * the parser must be positioned directly after the closing <query/> tag. + * Parse the IQ sub-document and create an IQ instance. Each IQ must have a + * single child element. At the beginning of the method call, the xml parser + * will be positioned at the opening tag of the IQ child element. At the end + * of the method call, the parser must be positioned on the closing tag + * of the child element. * * @param parser an XML parser. * @return a new IQ instance.