summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli_ure/source/climaker/climaker_emit.cxx2
-rw-r--r--cli_ure/source/uno_bridge/cli_data.cxx2
-rw-r--r--odk/examples/DevelopersGuide/Database/sdbcx.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/cli_ure/source/climaker/climaker_emit.cxx b/cli_ure/source/climaker/climaker_emit.cxx
index b3139d709c76..d7b55051b7e6 100644
--- a/cli_ure/source/climaker/climaker_emit.cxx
+++ b/cli_ure/source/climaker/climaker_emit.cxx
@@ -194,7 +194,7 @@ System::String^ mapUnoTypeName(System::String ^ typeName)
buf->Append(const_cast<System::String^>(Constants::sUnoidl));
buf->Append(mapUnoPolymorphicName(sUnoName));
}
- // apend []
+ // append []
for (;dims--;)
buf->Append(const_cast<System::String^>(Constants::sBrackets));
diff --git a/cli_ure/source/uno_bridge/cli_data.cxx b/cli_ure/source/uno_bridge/cli_data.cxx
index 9e3a32782b7a..f050ee0bc8d7 100644
--- a/cli_ure/source/uno_bridge/cli_data.cxx
+++ b/cli_ure/source/uno_bridge/cli_data.cxx
@@ -515,7 +515,7 @@ System::String^ mapUnoTypeName(rtl_uString const * typeName)
System::String ^ sName = mapUnoPolymorphicName(sUnoName);
buf->Append(sName);
}
- // apend []
+ // append []
for (;dims--;)
buf->Append(const_cast<System::String^>(Constants::sBrackets));
diff --git a/odk/examples/DevelopersGuide/Database/sdbcx.java b/odk/examples/DevelopersGuide/Database/sdbcx.java
index 32c434273a38..ebffb80dfc7e 100644
--- a/odk/examples/DevelopersGuide/Database/sdbcx.java
+++ b/odk/examples/DevelopersGuide/Database/sdbcx.java
@@ -387,7 +387,7 @@ public class sdbcx
xKeyCol.setPropertyValue("Name","SNR");
// append the key column
xKeyColAppend.appendByDescriptor(xKeyCol);
- // apend the key
+ // append the key
xKeyAppend.appendByDescriptor(xKey);
// the last step is to append the new table to the tables collection
XAppend xTableAppend = UnoRuntime.queryInterface(XAppend.class,xTabFac);