summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-04-16 11:17:10 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-04-16 12:46:55 +0200
commit3fce6ae224efb5f8bdf78ef83f89be11dafabf3a (patch)
tree6d05d02534e129e92a67913df6c9f9861e650a0c /odk
parentf03310eac0162c8b582a0f5f6cb0489d29aaa488 (diff)
fix usage of successful/successfully in comments
Change-Id: If280e1e944c877462cb84b579e19d4fd2ad1900b Reviewed-on: https://gerrit.libreoffice.org/70813 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java6
2 files changed, 4 insertions, 4 deletions
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)