summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/OLE/vbscript/readme.txt2
-rw-r--r--odk/examples/java/DocumentHandling/DocumentConverter.java2
-rw-r--r--odk/examples/java/Text/StyleInitialization.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/odk/examples/OLE/vbscript/readme.txt b/odk/examples/OLE/vbscript/readme.txt
index 082a4dff340b..45a982a13db4 100644
--- a/odk/examples/OLE/vbscript/readme.txt
+++ b/odk/examples/OLE/vbscript/readme.txt
@@ -1,4 +1,4 @@
Run the script in WriterDemo.vbs with Windows Script Host.
-Commmand line:
+Command line:
cscript WriterDemo.vbs
diff --git a/odk/examples/java/DocumentHandling/DocumentConverter.java b/odk/examples/java/DocumentHandling/DocumentConverter.java
index 35002fb5de1b..fe0460cd6a34 100644
--- a/odk/examples/java/DocumentHandling/DocumentConverter.java
+++ b/odk/examples/java/DocumentHandling/DocumentConverter.java
@@ -135,7 +135,7 @@ public class DocumentConverter {
// Storing and converting the document
xStorable.storeAsURL(sStoreUrl, propertyValues);
- // Closing the converted document. Use XCloseable.clsoe if the
+ // Closing the converted document. Use XCloseable.close if the
// interface is supported, otherwise use XComponent.dispose
com.sun.star.util.XCloseable xCloseable =
UnoRuntime.queryInterface(
diff --git a/odk/examples/java/Text/StyleInitialization.java b/odk/examples/java/Text/StyleInitialization.java
index ea5191ebb227..db0b8e1d866e 100644
--- a/odk/examples/java/Text/StyleInitialization.java
+++ b/odk/examples/java/Text/StyleInitialization.java
@@ -173,7 +173,7 @@ public class StyleInitialization {
// BEGIN: 'Finding a suitable style' Section from the Tutorial
- // craete a supplier to get the styles-collection
+ // create a supplier to get the styles-collection
com.sun.star.style.XStyleFamiliesSupplier xSupplier = null;
xSupplier = UnoRuntime.queryInterface(
com.sun.star.style.XStyleFamiliesSupplier.class, xTextDocument );