summaryrefslogtreecommitdiff
path: root/udkapi
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-26 15:18:52 +0200
committerAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-26 18:50:35 +0200
commit937440b65368e832a9e9fba92dfdb2efec4e06b5 (patch)
tree93607d34c4fc3f866e05cf603ad0fba04e0a04d4 /udkapi
parent7b0dd98941911c686c0d127810d1c333df5026c3 (diff)
Fix typos
Change-Id: I60261b937215340d2eb6f439234e99a300b0e189 Reviewed-on: https://gerrit.libreoffice.org/76380 Tested-by: Jenkins Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Diffstat (limited to 'udkapi')
-rw-r--r--udkapi/com/sun/star/container/XEnumerableMap.idl6
1 files changed, 3 insertions, 3 deletions
diff --git a/udkapi/com/sun/star/container/XEnumerableMap.idl b/udkapi/com/sun/star/container/XEnumerableMap.idl
index 1be6ec8a4e38..06d982447069 100644
--- a/udkapi/com/sun/star/container/XEnumerableMap.idl
+++ b/udkapi/com/sun/star/container/XEnumerableMap.idl
@@ -54,7 +54,7 @@ module com { module sun { module star { module container {
*/
interface XEnumerableMap : XMap
{
- /** creates a enumerator for the keys of the map
+ /** creates an enumerator for the keys of the map
@param Isolated
controls whether the newly create enumerator should be isolated from the map.
@@ -65,7 +65,7 @@ interface XEnumerableMap : XMap
XEnumeration createKeyEnumeration( [in] boolean Isolated )
raises ( ::com::sun::star::lang::NoSupportException );
- /** creates a enumerator for the values of the map
+ /** creates an enumerator for the values of the map
@param Isolated
controls whether the newly create enumerator should be isolated from the map.
@@ -76,7 +76,7 @@ interface XEnumerableMap : XMap
XEnumeration createValueEnumeration( [in] boolean Isolated )
raises ( ::com::sun::star::lang::NoSupportException );
- /** creates a enumerator for the key-value pairs of the map
+ /** creates an enumerator for the key-value pairs of the map
<p>The elements returned by the enumerator are instances of com::sun::star::beans::Pair,
holding the key-value-pairs which are part of the map.</p>