summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment
diff options
context:
space:
mode:
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.
************************************************************************-*/