summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorrbuj <robert.buj@gmail.com>2014-09-01 17:53:50 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-09-02 02:07:05 -0500
commitee82777c743cec8943312229ee4ef1c59328e059 (patch)
treeb25ac0a708128b1a3310b3d46c1a9b7f8dcdfae3 /wizards
parenta4a6153e2574c7e01efb7189a84e072480627561 (diff)
wizards: fix javadoc error: text not allowed in <ul> element
Change-Id: Ic50f9618c2649fe3e0fbbf2db6a09ea2e1d4c810 Reviewed-on: https://gerrit.libreoffice.org/11239 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/ui/event/AbstractListener.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/ui/event/AbstractListener.java b/wizards/com/sun/star/wizards/ui/event/AbstractListener.java
index 690d51f4087b..2ebbb67fac42 100644
--- a/wizards/com/sun/star/wizards/ui/event/AbstractListener.java
+++ b/wizards/com/sun/star/wizards/ui/event/AbstractListener.java
@@ -32,8 +32,8 @@ import java.util.HashMap;
* To use this class do the following:<br/>
* <ul>
* <li>Write a subclass which implements the needed Listener(s).</li>
- * in the even methods, use invoke(...).
- * <li>When instanciating the component, register the subclass as the event listener.</li>
+ * <li>In the even methods, use invoke(...).</li>
+ * <li>When instantiating the component, register the subclass as the event listener.</li>
* <li>Write the methods which should be performed when the event occurs.</li>
* <li>call the "add" method, to define a component-event-action mapping.</li>
* </ul>