From 3fce6ae224efb5f8bdf78ef83f89be11dafabf3a Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 16 Apr 2019 11:17:10 +0200 Subject: fix usage of successful/successfully in comments Change-Id: If280e1e944c877462cb84b579e19d4fd2ad1900b Reviewed-on: https://gerrit.libreoffice.org/70813 Tested-by: Jenkins Reviewed-by: Noel Grandin --- .../DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java | 2 +- .../OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'odk') diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java index d45cb408548b..9388181f3b15 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java @@ -71,7 +71,7 @@ public class OfficeConnect /** * ctor * We try to open the connection in our ctor ... transparently for user. - * After it was successfully you will find an internal set member + * After it was successful you will find an internal set member * m_xRemoteContext which means remote component context of the connected office. * The context can be used to get the remote service manager from the office. * We made it private to support singleton pattern of these implementation. diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java index 21dca2ec4c6e..e9fa03afdec0 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java +++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java @@ -321,7 +321,7 @@ public class AsciiReplaceFilter * @param lDescriptor * the MediaDescriptor which describes the document * - * @return a bool value which describes if method was successfully or not. + * @return a bool value which describes if method was successful. */ public boolean filter( com.sun.star.beans.PropertyValue[] lDescriptor ) @@ -406,7 +406,7 @@ public class AsciiReplaceFilter * capsulate all other necessary information for this filter request * (streams, replace values ...) * - * @return a bool value which describes if method was successfully or not. + * @return a bool value which describes if method was successful. */ private boolean implts_import( com.sun.star.text.XTextDocument xTarget , FilterOptions aOptions ) @@ -538,7 +538,7 @@ public class AsciiReplaceFilter * capsulate all other necessary information for this filter request * (streams, replace values ...) * - * @return a bool value which describes if method was successfully or not. + * @return a bool value which describes if method was successful. */ private boolean implts_export( com.sun.star.text.XTextDocument xSource , FilterOptions aOptions) -- cgit