summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-07-02 18:23:45 +0200
committerSamuel Mehrbrodt <s.mehrbrodt@gmail.com>2015-07-03 08:19:04 +0000
commit7f73bb5b44202431f4d07b283e47b1bc0a1a651e (patch)
tree26067609d994c0e288134f8563243416c332f94e /odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment
parente9e61a4a7850ec7f2e0cf238c58794b021da5235 (diff)
Fix typos
Change-Id: I8e429d1f03aac7c7cdb7ff4b43b3f46d40292510 Reviewed-on: https://gerrit.libreoffice.org/16709 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Diffstat (limited to 'odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java6
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java2
2 files changed, 4 insertions, 4 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
index 715854a0b4cd..6d5f2cc27546 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
@@ -214,8 +214,8 @@ public class AsciiReplaceFilter
/**
* For external user of us we must provide our internal filter name
* (which is registered inside configuration package TypeDetection).
- * User will be able then to ask there for furthe information about us.
- * Otherwhise we must implement a full featured XPropertySet ...
+ * User will be able then to ask there for further information about us.
+ * Otherwhise we must implement a full featured XPropertySet...
*
* @return our internal filter name of configuration
*/
@@ -593,7 +593,7 @@ public class AsciiReplaceFilter
}
/**
- * helper function to convert the used StringBuffer into a Strig value.
+ * helper function to convert the used StringBuffer into a String value.
* And we use this chance to have a look on optional filter options
* which can invite replacing of strings.
*/
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
index c740bc4d276d..cf54bfe3243b 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
@@ -49,7 +49,7 @@ import com.sun.star.uno.UnoRuntime;
@attention This class mustn't be threadsafe - because instances of it
are used temp. only - not as members. So no concurrent access
should occur.
- Another reason: It wuold be very difficult to safe every
+ Another reason: it would be very difficult to safe every
access on our internal member. To do so - we must implement
special methods instead of allowing pure member access.
************************************************************************-*/