From 937440b65368e832a9e9fba92dfdb2efec4e06b5 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Fri, 26 Jul 2019 15:18:52 +0200 Subject: Fix typos Change-Id: I60261b937215340d2eb6f439234e99a300b0e189 Reviewed-on: https://gerrit.libreoffice.org/76380 Tested-by: Jenkins Reviewed-by: Andrea Gelmini --- udkapi/com/sun/star/container/XEnumerableMap.idl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'udkapi/com') 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

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.

-- cgit