diff --git a/source/org/jivesoftware/smackx/FormField.java b/source/org/jivesoftware/smackx/FormField.java index 9cb401443..76717212c 100644 --- a/source/org/jivesoftware/smackx/FormField.java +++ b/source/org/jivesoftware/smackx/FormField.java @@ -255,7 +255,7 @@ public class FormField { * Adds a default values to the question if the question is part of a form to fill out. * Otherwise, adds an answered values to the question. * - * @param values default values or an answered values of the question. + * @param newValues default values or an answered values of the question. */ public void addValues(List newValues) { synchronized (values) { diff --git a/source/org/jivesoftware/smackx/packet/DataForm.java b/source/org/jivesoftware/smackx/packet/DataForm.java index 2e6f15ba1..7488aecb0 100644 --- a/source/org/jivesoftware/smackx/packet/DataForm.java +++ b/source/org/jivesoftware/smackx/packet/DataForm.java @@ -198,7 +198,7 @@ public class DataForm implements PacketExtension { /** * Adds a new item returned from a search. * - * @param field the item returned from a search. + * @param item the item returned from a search. */ public void addItem(Item item) { synchronized (items) {