summaryrefslogtreecommitdiff
path: root/scripting
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-05-10 09:34:10 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-05-10 14:50:59 +0200
commitfbc038cc4f4a12f8302ce5b3bd7d739bd66a674e (patch)
treed6cc189748e5980420cc0611b44b28ec4183ea25 /scripting
parent8ccffe4e7fb6abf6fa3ba9187007e9d8af116baf (diff)
an uno -> a uno
Change-Id: I538db88f8477dd2d2ad25c372928fec6c11d979d Reviewed-on: https://gerrit.libreoffice.org/72105 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'scripting')
-rw-r--r--scripting/java/com/sun/star/script/framework/container/Parcel.java4
-rw-r--r--scripting/java/com/sun/star/script/framework/container/ParcelContainer.java6
-rw-r--r--scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java2
-rw-r--r--scripting/source/provider/MasterScriptProvider.cxx2
4 files changed, 7 insertions, 7 deletions
diff --git a/scripting/java/com/sun/star/script/framework/container/Parcel.java b/scripting/java/com/sun/star/script/framework/container/Parcel.java
index 078ed7303c7e..6be4cad99fa7 100644
--- a/scripting/java/com/sun/star/script/framework/container/Parcel.java
+++ b/scripting/java/com/sun/star/script/framework/container/Parcel.java
@@ -56,8 +56,8 @@ public class Parcel implements XNameContainer {
}
/**
- * Tests if this <tt>Parcel</tt> is in an UNO package
- * or within a sub package within an UNO package
+ * Tests if this <tt>Parcel</tt> is in a UNO package
+ * or within a sub package within a UNO package
*
* @return <tt>true</tt> if has parent <tt>false</tt> otherwise
*/
diff --git a/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java b/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java
index 8a4b2e23f9d5..21c1ece4a2b4 100644
--- a/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java
+++ b/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java
@@ -69,8 +69,8 @@ public class ParcelContainer implements XNameAccess {
private boolean isPkgContainer = false;
/**
- * Tests if this <tt>ParcelContainer</tt> represents an UNO package
- * or sub package within an UNO package
+ * Tests if this <tt>ParcelContainer</tt> represents a UNO package
+ * or sub package within a UNO package
*
* @return <tt>true</tt> if has parent <tt>false</tt> otherwise
*/
@@ -304,7 +304,7 @@ public class ParcelContainer implements XNameAccess {
}
public String getParcelContainerDir() {
- // If this container does not represent an uno-package
+ // If this container does not represent a uno-package
// then it is a document, user or share
// in each case the convention is to have a Scripts/[language]
// dir where scripts reside
diff --git a/scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java b/scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java
index d00dd92e1190..0b5194215d36 100644
--- a/scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java
+++ b/scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java
@@ -388,7 +388,7 @@ public class UnoPkgContainer extends ParcelContainer {
registerPackageContainer(uri, pkgContainer);
} else {
// stand-alone library package, e.g. not contained in
- // an uno package
+ // a uno package
if (loadParcel(uri) == null) {
throw new com.sun.star.lang.IllegalArgumentException(
"Couldn't load script library package " + uri
diff --git a/scripting/source/provider/MasterScriptProvider.cxx b/scripting/source/provider/MasterScriptProvider.cxx
index 8be711963f39..d3fd5a28f489 100644
--- a/scripting/source/provider/MasterScriptProvider.cxx
+++ b/scripting/source/provider/MasterScriptProvider.cxx
@@ -273,7 +273,7 @@ MasterScriptProvider::getScript( const OUString& scriptURI )
// we need to extract the value of location part from the
// location attribute of the script, if the script is located in an
// uno package then that is the location part up to and including
- // ":uno_packages", if the script is not in an uno package then the
+ // ":uno_packages", if the script is not in a uno package then the
// normal value is used e.g. user or share.
// The value extracted will be used to determine if the script is
// located in the same location context as this MSP.