diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-08-17 16:41:20 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-08-17 21:53:28 +0200 |
commit | 64a3124d928f337011cad137c2c059f1ef064377 (patch) | |
tree | cdcea46848e5b61872716d8deb6f5d5b8f57894a /udkapi | |
parent | fc443f3b50e33a1adab03bbf7fb9f9351eb07868 (diff) |
Fix typos
Change-Id: Iaa9c0aea3ea1a239e378bd714ba335f91bb1faf3
Reviewed-on: https://gerrit.libreoffice.org/41194
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'udkapi')
8 files changed, 8 insertions, 8 deletions
diff --git a/udkapi/com/sun/star/beans/PropertySet.idl b/udkapi/com/sun/star/beans/PropertySet.idl index 31a1bae4820b..f612695cc9af 100644 --- a/udkapi/com/sun/star/beans/PropertySet.idl +++ b/udkapi/com/sun/star/beans/PropertySet.idl @@ -33,7 +33,7 @@ module com { module sun { module star { module beans { -/** This is a generic service which should be supported by all servies +/** This is a generic service which should be supported by all services which have properties. <p>It specifies several, mostly optional ways to access properties. diff --git a/udkapi/com/sun/star/connection/XConnector.idl b/udkapi/com/sun/star/connection/XConnector.idl index a6eb73d48fed..93709195f2c3 100644 --- a/udkapi/com/sun/star/connection/XConnector.idl +++ b/udkapi/com/sun/star/connection/XConnector.idl @@ -41,7 +41,7 @@ published interface XConnector: com::sun::star::uno::XInterface @param sConnectionDescription contains the kind of the connection plus a comma separated list of attributes, - e.g., <em>socket,host=locahost,port=2345</em> for a tcpip connection. + e.g., <em>socket,host=localhost,port=2345</em> for a tcpip connection. @throws ConnectionSetupException Problems during setting up the connector diff --git a/udkapi/com/sun/star/container/XIdentifierContainer.idl b/udkapi/com/sun/star/container/XIdentifierContainer.idl index 2dee8499a0ad..11d59aa517d0 100644 --- a/udkapi/com/sun/star/container/XIdentifierContainer.idl +++ b/udkapi/com/sun/star/container/XIdentifierContainer.idl @@ -50,7 +50,7 @@ published interface XIdentifierContainer: com::sun::star::container::XIdentifier The new element that will be inserted. @throws com::sun::star::lang::IllegalArgumentException - if the argument is not vailid for this container. + if the argument is not valid for this container. @throws com::sun::star::lang::WrappedTargetException If the implementation has internal reasons for exceptions, diff --git a/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl b/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl index 2ec77f4b3247..2373a550348f 100644 --- a/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl +++ b/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl @@ -64,7 +64,7 @@ interface XAsyncOutputMonitor { <code>waitForCompletion</code> has very specific semantics—it just blocks long enough so that any errors encountered during previous calls to com::sun::star::io::XOutputStream::writeBytes() - can reliably be reported. It specificially does not guarantee that any + can reliably be reported. It specifically does not guarantee that any data have safely been stored on a stable physical medium, like a hard disk (and it is completely unspecified whether <code>flush</code> should give this guarantee).</p> diff --git a/udkapi/com/sun/star/lang/XComponent.idl b/udkapi/com/sun/star/lang/XComponent.idl index 4711bea0c16e..38b83aa3762e 100644 --- a/udkapi/com/sun/star/lang/XComponent.idl +++ b/udkapi/com/sun/star/lang/XComponent.idl @@ -26,7 +26,7 @@ module com { module sun { module star { module lang { published interface XEventListener; -/** allows to exclicitly free resources and break cyclic references. +/** allows to explicitly free resources and break cyclic references. <p>Actually the real lifetime of an UNO object is controlled by references kept on interfaces of this object. But there are two diff --git a/udkapi/com/sun/star/reflection/XIdlArray.idl b/udkapi/com/sun/star/reflection/XIdlArray.idl index 6f2afcd8a412..6f60069d6393 100644 --- a/udkapi/com/sun/star/reflection/XIdlArray.idl +++ b/udkapi/com/sun/star/reflection/XIdlArray.idl @@ -40,7 +40,7 @@ */ published interface XIdlArray: com::sun::star::uno::XInterface { - /** Rellocates the length of the sequence instance. + /** Reallocates the length of the sequence instance. @param array sequence instance diff --git a/udkapi/com/sun/star/registry/CannotRegisterImplementationException.idl b/udkapi/com/sun/star/registry/CannotRegisterImplementationException.idl index 7a666819a980..e1de8120f337 100644 --- a/udkapi/com/sun/star/registry/CannotRegisterImplementationException.idl +++ b/udkapi/com/sun/star/registry/CannotRegisterImplementationException.idl @@ -30,7 +30,7 @@ method, but the component cannot be registered. The reason for this exception could be:<br> <br><ul> <li>the component cannot be found or cannot be loaded (missing path or classpath) - <li>the component doesn't provide the necessary specifactions (exported registration functions for a + <li>the component doesn't provide the necessary specifications (exported registration functions for a C++ component (shared library) or a named registration class with the appropriate methods for a Java component (normally a jar file)). </ul><br> diff --git a/udkapi/com/sun/star/util/MacroExpander.idl b/udkapi/com/sun/star/util/MacroExpander.idl index 40195f38b165..5c49d926541f 100644 --- a/udkapi/com/sun/star/util/MacroExpander.idl +++ b/udkapi/com/sun/star/util/MacroExpander.idl @@ -27,7 +27,7 @@ module com { module sun { module star { module util { /** This meta service supports the XMacroExpander interface for expanding - arbitrary macro expressions, i.e. substitude macro names. + arbitrary macro expressions, i.e. substitute macro names. The purpose of this service is to separate the use of macrofied strings, e.g. urls from the use of services. |