Bug 1404111 - Part 0 - Fix Javadoc. r?janh draft
authorJan Henning <jh+bugzilla@buttercookie.de>
Tue, 17 Oct 2017 22:07:20 +0200
changeset 681804 49da6f528da91b7d21332ca8c0fbc1f94a15c082
parent 681803 0c4fb89c38d829ecc8fb2d617ea0a2af124bcb12
child 681805 5adc0619a1cccaa75993229068cfc10ce3eee835
child 681807 82492ee92f4cfb789be29c54568302c648f6cdd8
child 681810 f857906f9052f2985d675cca1884da2d8ba746e6
child 681811 31f674e799e17c9d32c742b02c4988860388c194
push id84932
push usermozilla@buttercookie.de
push dateTue, 17 Oct 2017 20:27:44 +0000
reviewersjanh
bugs1404111
milestone58.0a1
Bug 1404111 - Part 0 - Fix Javadoc. r?janh MozReview-Commit-ID: 69yqr7ybioX
mobile/android/geckoview/src/main/java/org/mozilla/gecko/GeckoView.java
--- a/mobile/android/geckoview/src/main/java/org/mozilla/gecko/GeckoView.java
+++ b/mobile/android/geckoview/src/main/java/org/mozilla/gecko/GeckoView.java
@@ -1661,34 +1661,34 @@ public class GeckoView extends LayerView
              * @param id ID of the selected item.
              */
             void confirm(String id);
 
             /**
              * Called by the prompt implementation when the multiple-choice list is
              * dismissed by the user.
              *
-             * @param id IDs of the selected items.
+             * @param ids IDs of the selected items.
              */
             void confirm(String[] ids);
 
             /**
              * Called by the prompt implementation when the menu or single-choice list is
              * dismissed by the user.
              *
              * @param item Bundle representing the selected item; must be an original
              *             GeckoBundle object that was passed to the implementation.
              */
             void confirm(GeckoBundle item);
 
             /**
              * Called by the prompt implementation when the multiple-choice list is
              * dismissed by the user.
              *
-             * @param item Bundle array representing the selected items; must be original
+             * @param items Bundle array representing the selected items; must be original
              *             GeckoBundle objects that were passed to the implementation.
              */
             void confirm(GeckoBundle[] items);
         }
 
         /**
          * Display choices in a menu that dismisses as soon as an item is chosen.
          */