summaryrefslogtreecommitdiff
path: root/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
diff options
context:
space:
mode:
Diffstat (limited to 'javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java')
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java b/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
index bc34c875331b..342e732e1af4 100644
--- a/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
+++ b/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
@@ -72,7 +72,7 @@ import com.sun.star.uno.UnoRuntime;
* is removed.
* ListIterator.set is not supported.
*
- * A lot of methods resemble those of the to java.util.List interface, allthough
+ * A lot of methods resemble those of the to java.util.List interface, although
* this class does not implement it. However, the list iterators returned, for example by
* the listIterator method implement the java.util.ListIterator interface.
* Implementing the List interface would mean to support all none - optional methods as
@@ -81,9 +81,9 @@ import com.sun.star.uno.UnoRuntime;
* list have to cause changes in the main list. This is a problem, since this class is to be
* used in a multi-threaded environment. The sub list could work on a copy as the iterators
* do, but all the functions which work on an given index could not be properly supported.
- * Unfortunatly, the List interface documentation states that all optional methods implemented
+ * Unfortunately, the List interface documentation states that all optional methods implemented
* by the list have to be implemented in the sub list. That would mean to do without all those
- * critical methods, allthough they might work well in the "main list" (as opposed to sub list).
+ * critical methods, although they might work well in the "main list" (as opposed to sub list).
*/
public class InterfaceContainer implements Cloneable
{