summaryrefslogtreecommitdiffstats
path: root/javaunohelper
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-27 10:44:52 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-07-27 11:49:10 +0200
commitfdd35ea841f319c48e1978dfead703d6cb0996ff (patch)
tree681595ee1212584523928792baa7ce03b21b18ec /javaunohelper
parentRemoved duplicated include (diff)
downloadcore-fdd35ea841f319c48e1978dfead703d6cb0996ff.tar.gz
core-fdd35ea841f319c48e1978dfead703d6cb0996ff.zip
Fix typos
Change-Id: I380856ca45c835e732fdf080a522caab4534db5b Reviewed-on: https://gerrit.libreoffice.org/76346 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'javaunohelper')
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java b/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
index b0419771870e..e858ced81fd8 100644
--- a/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
+++ b/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
@@ -81,7 +81,7 @@ import com.sun.star.uno.UnoRuntime;
* a range of values of the list's data wrapped in a List implementation. Changes to the sub
* 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.
+ * do, but all the functions which work on a given index could not be properly supported.
* 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, although they might work well in the "main list" (as opposed to sub list).