summaryrefslogtreecommitdiff
path: root/qadevOOo/tests
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2014-11-10 15:05:25 +0100
committerNoel Grandin <noelgrandin@gmail.com>2014-11-12 11:04:11 +0000
commitda40cac540e7d735edbe9069b3c8ec6af4530208 (patch)
treef2abda7281129e13f588c77b18780a7090c8405f /qadevOOo/tests
parentbb437029c1e5331bcc3f8fb2fc87837142a52f33 (diff)
Fix common typos. No automatic tools. Handmade…
Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959 Reviewed-on: https://gerrit.libreoffice.org/12164 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'qadevOOo/tests')
-rw-r--r--qadevOOo/tests/java/ifc/accessibility/_XAccessibleEventBroadcaster.java8
-rw-r--r--qadevOOo/tests/java/ifc/container/_XNameAccess.java6
-rw-r--r--qadevOOo/tests/java/ifc/container/_XNameReplace.java2
-rw-r--r--qadevOOo/tests/java/ifc/frame/_XFrame.java2
-rw-r--r--qadevOOo/tests/java/ifc/frame/_XFrameLoader.java6
-rw-r--r--qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java2
-rw-r--r--qadevOOo/tests/java/ifc/sdbc/_XRowSet.java2
-rw-r--r--qadevOOo/tests/java/ifc/sheet/_XLabelRange.java2
-rw-r--r--qadevOOo/tests/java/ifc/sheet/_XSheetAuditing.java2
-rw-r--r--qadevOOo/tests/java/ifc/text/_XPageCursor.java4
-rw-r--r--qadevOOo/tests/java/ifc/text/_XTextContent.java2
-rw-r--r--qadevOOo/tests/java/ifc/ui/dialogs/_XControlInformation.java2
-rw-r--r--qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java14
-rw-r--r--qadevOOo/tests/java/mod/_bridgefac/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_connector/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_corereflection/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_implreg/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_introspection/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_invocadapt/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_invocation/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_nestedreg/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_sc/ScHeaderFieldObj.java2
-rw-r--r--qadevOOo/tests/java/mod/_servicemgr/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_shlibloader/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_simplereg/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_streams/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_typeconverter/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_typemgr/uno/package.html4
-rw-r--r--qadevOOo/tests/java/mod/_uuresolver/uno/package.html4
29 files changed, 58 insertions, 58 deletions
diff --git a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleEventBroadcaster.java b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleEventBroadcaster.java
index e957cc3e6e76..98a0309d867a 100644
--- a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleEventBroadcaster.java
+++ b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleEventBroadcaster.java
@@ -142,12 +142,12 @@ public class _XAccessibleEventBroadcaster extends MultiMethodTest {
}
/**
- * Removes one of two listeners added before and and fires event
- * by mean of object relation. <p>
+ * Removes one of two listeners added before and fires event
+ * by mean of object relation.<p>
*
- * Has <b> OK </b> status if the removed listener wasn't called. <p>
+ * Has <b> OK </b> status if the removed listener wasn't called.<p>
*
- * The following method tests are to be completed successfully before :
+ * The following method tests are to be completed successfully before:
* <ul>
* <li> <code>addEventListener()</code> : to have added listeners </li>
* </ul>
diff --git a/qadevOOo/tests/java/ifc/container/_XNameAccess.java b/qadevOOo/tests/java/ifc/container/_XNameAccess.java
index f5489e1ba07a..52f2024850f1 100644
--- a/qadevOOo/tests/java/ifc/container/_XNameAccess.java
+++ b/qadevOOo/tests/java/ifc/container/_XNameAccess.java
@@ -74,7 +74,7 @@ public class _XNameAccess extends MultiMethodTest {
result &= loc_result;
}
- name = "non_existant_name__1234";
+ name = "non_existent_name__1234";
log.println("testing hasByName() with invalid name");
try {
loc_result = !oObj.hasByName(name);
@@ -126,8 +126,8 @@ public class _XNameAccess extends MultiMethodTest {
result &= loc_result;
}
- log.println("testing with non-existant name");
- name = "non_existant_name__1234";
+ log.println("testing with non-existent name");
+ name = "non_existent_name__1234";
try {
loc_result = (null != oObj.getByName(name));
loc_result = false;
diff --git a/qadevOOo/tests/java/ifc/container/_XNameReplace.java b/qadevOOo/tests/java/ifc/container/_XNameReplace.java
index 92e7c220f0a2..1d593a83efff 100644
--- a/qadevOOo/tests/java/ifc/container/_XNameReplace.java
+++ b/qadevOOo/tests/java/ifc/container/_XNameReplace.java
@@ -105,7 +105,7 @@ public class _XNameReplace extends MultiMethodTest {
log.println("ObjRelation(\"INSTANCE" + Index +"\") Object n.a.");
}
- log.println("getting the existant object's name");
+ log.println("getting the existing object's name");
XNameAccess oNameAccess = UnoRuntime.queryInterface(
XNameAccess.class, oObj);
oNames = oNameAccess.getElementNames();
diff --git a/qadevOOo/tests/java/ifc/frame/_XFrame.java b/qadevOOo/tests/java/ifc/frame/_XFrame.java
index b3cb999fa3d9..1771e3d8faf0 100644
--- a/qadevOOo/tests/java/ifc/frame/_XFrame.java
+++ b/qadevOOo/tests/java/ifc/frame/_XFrame.java
@@ -535,7 +535,7 @@ public class _XFrame extends MultiMethodTest {
try {
oObj.initialize(win) ;
} catch (com.sun.star.uno.RuntimeException e){
- String message="Frame::initialized() is called more than once, which isnt useful nor allowed.";
+ String message="Frame::initialized() is called more than once, which is not useful nor allowed.";
if (e.toString().indexOf(message) != -1){
log.println(e.toString());
log.println("methods throws exception, but it's OK");
diff --git a/qadevOOo/tests/java/ifc/frame/_XFrameLoader.java b/qadevOOo/tests/java/ifc/frame/_XFrameLoader.java
index f4e4a1c366f0..a71491e002cd 100644
--- a/qadevOOo/tests/java/ifc/frame/_XFrameLoader.java
+++ b/qadevOOo/tests/java/ifc/frame/_XFrameLoader.java
@@ -125,17 +125,17 @@ public class _XFrameLoader extends MultiMethodTest {
private boolean loaded = false ;
/**
- * Firts <code>cancel</code> method test is called.
+ * First <code>cancel</code> method test is called.
* If in that test loaing process was interrupted by
* <code>cancel</code> call then <code>load</code> test
* executes. It loads a component, waits some moment to
* listener have a chance to be called and then checks
- * if the load listener was called. <p>
+ * if the load listener was called.<p>
* Has <b>OK</b> status if <code>cancel</code> method test
* didn't interrupt loading and it was successful, or
* if in this method it loads successful and listener's
* <code>finished</code> method was called.
- * The following method tests are to be executed before :
+ * The following method tests are to be executed before:
* <ul>
* <li> <code> cancel() </code> </li>
* </ul>
diff --git a/qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java b/qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java
index 1848429a850d..93dfeb53367d 100644
--- a/qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java
+++ b/qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java
@@ -50,7 +50,7 @@ import com.sun.star.registry.XSimpleRegistry;
* The full system path to the registry file which is opened and modified.
* </li>
* <li> <code>'XSimpleRegistry.destroy'</code> (of type <code>String</code>):
-* The full system path to the registry fiel which is destroyed.
+* The full system path to the registry file which is destroyed.
* </li>
* <li> <code>'XSimpleRegistry.merge'</code> (of type <code>String</code>):
* The full system path to the registry file which is merged with the
diff --git a/qadevOOo/tests/java/ifc/sdbc/_XRowSet.java b/qadevOOo/tests/java/ifc/sdbc/_XRowSet.java
index 4d5e4529a39e..bf6cd7dc1952 100644
--- a/qadevOOo/tests/java/ifc/sdbc/_XRowSet.java
+++ b/qadevOOo/tests/java/ifc/sdbc/_XRowSet.java
@@ -95,7 +95,7 @@ public class _XRowSet extends MultiMethodTest {
/**
* Reexecutes the RowSet and checks that listener was called. <p>
- * Has OK status if no exceptions were rised and listener was called.
+ * Has OK status if no exceptions were raised and listener was called.
*/
public void _execute() {
requiredMethod("addRowSetListener()");
diff --git a/qadevOOo/tests/java/ifc/sheet/_XLabelRange.java b/qadevOOo/tests/java/ifc/sheet/_XLabelRange.java
index e83a6f932d97..84da96145364 100644
--- a/qadevOOo/tests/java/ifc/sheet/_XLabelRange.java
+++ b/qadevOOo/tests/java/ifc/sheet/_XLabelRange.java
@@ -82,7 +82,7 @@ public class _XLabelRange extends MultiMethodTest {
/**
* Test calls the method and compares returned value with value set before.
- * <p>Has <b> OK </b> status if if values are equal. <p>
+ * <p>Has <b> OK </b> status if values are equal. <p>
* The following method tests are to be completed successfully before :
* <ul>
* <li> <code> setLabelArea() </code>: to have the cell range that contains
diff --git a/qadevOOo/tests/java/ifc/sheet/_XSheetAuditing.java b/qadevOOo/tests/java/ifc/sheet/_XSheetAuditing.java
index e17e82599950..f3e5fc150234 100644
--- a/qadevOOo/tests/java/ifc/sheet/_XSheetAuditing.java
+++ b/qadevOOo/tests/java/ifc/sheet/_XSheetAuditing.java
@@ -70,7 +70,7 @@ public class _XSheetAuditing extends MultiMethodTest {
// get a sheet for changing the cells
XSpreadsheet xSheet = (XSpreadsheet)tEnv.getObjRelation("XSheetAuditing.Spreadsheet");
- if (xSheet == null) // query on ther object
+ if (xSheet == null) // query on their object
xSheet = UnoRuntime.queryInterface(XSpreadsheet.class, oObj);
if (xSheet == null)
throw new StatusException(Status.failed("'XSheetAuditing.Spreadsheet' object relation not found."));
diff --git a/qadevOOo/tests/java/ifc/text/_XPageCursor.java b/qadevOOo/tests/java/ifc/text/_XPageCursor.java
index dbd65e616774..6fdcd8bb3a0c 100644
--- a/qadevOOo/tests/java/ifc/text/_XPageCursor.java
+++ b/qadevOOo/tests/java/ifc/text/_XPageCursor.java
@@ -115,7 +115,7 @@ public class _XPageCursor extends MultiMethodTest {
}
/**
- * Firts jumps to the first page to have at least one
+ * First jumps to the first page to have at least one
* next page, then call the method. <p>
* Has <b> OK </b> status if the method returns
* <code>true</code> value.
@@ -138,7 +138,7 @@ public class _XPageCursor extends MultiMethodTest {
}
/**
- * Firts jumps to the last page to have at least one
+ * First jumps to the last page to have at least one
* previous page, then call the method. <p>
* Has <b> OK </b> status if the method returns
* <code>true</code> value.
diff --git a/qadevOOo/tests/java/ifc/text/_XTextContent.java b/qadevOOo/tests/java/ifc/text/_XTextContent.java
index 3b4ac3776ee6..3b6a5e0a4578 100644
--- a/qadevOOo/tests/java/ifc/text/_XTextContent.java
+++ b/qadevOOo/tests/java/ifc/text/_XTextContent.java
@@ -64,7 +64,7 @@ public class _XTextContent extends MultiMethodTest {
/**
* Tries to attach the text content to the test range
* gotten with getAnchor(). If relations are found
- * then they are are used for testing. <p>
+ * then they are used for testing. <p>
*
* The test is OK if the method works without error.
* @see #_getAnchor()
diff --git a/qadevOOo/tests/java/ifc/ui/dialogs/_XControlInformation.java b/qadevOOo/tests/java/ifc/ui/dialogs/_XControlInformation.java
index d9898c976e5d..34797b2e2233 100644
--- a/qadevOOo/tests/java/ifc/ui/dialogs/_XControlInformation.java
+++ b/qadevOOo/tests/java/ifc/ui/dialogs/_XControlInformation.java
@@ -52,7 +52,7 @@ public class _XControlInformation extends MultiMethodTest {
/**
* For every available control check if it is supported.
- * Also wrong control name (non-existant and empty) are checked.<p>
+ * Also wrong control name (non-existent and empty) are checked.<p>
*
* Has <b>OK</b> status if <code>true</code> returned for valid
* control names and <code>false</code> for invalid.<p>
diff --git a/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java b/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java
index 177ca2fb5bd7..5e31bbc138af 100644
--- a/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java
+++ b/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java
@@ -192,7 +192,7 @@ public class _XDocumentHandler extends MultiMethodTest {
* transferring with <code>endDocument</code> method call. <p>
*
* Has <b>OK</b> status if no exceptions occurred during
- * the whole transfering and if the appropriate changes
+ * the whole transferring and if the appropriate changes
* occurred in the document where XML data was trnsfered to.
* This check is performed by checker relation.
*/
@@ -227,7 +227,7 @@ public class _XDocumentHandler extends MultiMethodTest {
* <code>'XDocumentHandler.XMLData'</code>. <p>
*
* Has <b>OK</b> status if no exceptions occurred during XML data
- * transfering in <code>startDocument</code> and
+ * transferring in <code>startDocument</code> and
* <code>startElement</code> method tests. <p>
*
* Exact checking of XML transfer is made in <code>endDocument</code>
@@ -292,7 +292,7 @@ public class _XDocumentHandler extends MultiMethodTest {
* Does nothing. <p>
*
* Has <b>OK</b> status if no exceptions occurred during XML data
- * transfering in <code>startDocument</code> and
+ * transferring in <code>startDocument</code> and
* <code>startElement</code> method tests.
*/
public void _endElement() {
@@ -311,7 +311,7 @@ public class _XDocumentHandler extends MultiMethodTest {
* Does nothing. <p>
*
* Has <b>OK</b> status if no exceptions occurred during XML data
- * transfering in <code>startDocument</code> and
+ * transferring in <code>startDocument</code> and
* <code>startElement</code> method tests.
*/
public void _characters() {
@@ -330,7 +330,7 @@ public class _XDocumentHandler extends MultiMethodTest {
* Does nothing. <p>
*
* Has <b>OK</b> status if no exceptions occurred during XML data
- * transfering in <code>startDocument</code> and
+ * transferring in <code>startDocument</code> and
* <code>startElement</code> method tests.
*/
public void _ignorableWhitespace() {
@@ -349,7 +349,7 @@ public class _XDocumentHandler extends MultiMethodTest {
* Does nothing. <p>
*
* Has <b>OK</b> status if no exceptions occurred during XML data
- * transfering in <code>startDocument</code> and
+ * transferring in <code>startDocument</code> and
* <code>startElement</code> method tests.
*/
public void _processingInstruction() {
@@ -368,7 +368,7 @@ public class _XDocumentHandler extends MultiMethodTest {
* Does nothing. <p>
*
* Has <b>OK</b> status if no exceptions occurred during XML data
- * transfering in <code>startDocument</code> and
+ * transferring in <code>startDocument</code> and
* <code>startElement</code> method tests.
*/
public void _setDocumentLocator() {
diff --git a/qadevOOo/tests/java/mod/_bridgefac/uno/package.html b/qadevOOo/tests/java/mod/_bridgefac/uno/package.html
index 856de26fca94..40dbd15bd870 100644
--- a/qadevOOo/tests/java/mod/_bridgefac/uno/package.html
+++ b/qadevOOo/tests/java/mod/_bridgefac/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'brdgfctr'.</P>
+<P>Contains all test cases for the module 'brdgfctr'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_connector/uno/package.html b/qadevOOo/tests/java/mod/_connector/uno/package.html
index 0fb225c0ef64..e4d67d4bdd8c 100644
--- a/qadevOOo/tests/java/mod/_connector/uno/package.html
+++ b/qadevOOo/tests/java/mod/_connector/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'connectr'.</P>
+<P>Contains all test cases for the module 'connectr'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_corereflection/uno/package.html b/qadevOOo/tests/java/mod/_corereflection/uno/package.html
index a6d0129f42bf..9d604ba75d23 100644
--- a/qadevOOo/tests/java/mod/_corereflection/uno/package.html
+++ b/qadevOOo/tests/java/mod/_corereflection/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'corefl'.</P>
+<P>Contains all test cases for the module 'corefl'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_implreg/uno/package.html b/qadevOOo/tests/java/mod/_implreg/uno/package.html
index 446ad28ae893..a007b5cb1de7 100644
--- a/qadevOOo/tests/java/mod/_implreg/uno/package.html
+++ b/qadevOOo/tests/java/mod/_implreg/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'impreg'.</P>
+<P>Contains all test cases for the module 'impreg'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_introspection/uno/package.html b/qadevOOo/tests/java/mod/_introspection/uno/package.html
index 6d32765b8f75..617c082e4629 100644
--- a/qadevOOo/tests/java/mod/_introspection/uno/package.html
+++ b/qadevOOo/tests/java/mod/_introspection/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'insp'.</P>
+<P>Contains all test cases for the module 'insp'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_invocadapt/uno/package.html b/qadevOOo/tests/java/mod/_invocadapt/uno/package.html
index bf91a1cd2aa6..9d1509fca8bc 100644
--- a/qadevOOo/tests/java/mod/_invocadapt/uno/package.html
+++ b/qadevOOo/tests/java/mod/_invocadapt/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'invadp'.</P>
+<P>Contains all test cases for the module 'invadp'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_invocation/uno/package.html b/qadevOOo/tests/java/mod/_invocation/uno/package.html
index 4942108a3cda..ee1fd4a0276a 100644
--- a/qadevOOo/tests/java/mod/_invocation/uno/package.html
+++ b/qadevOOo/tests/java/mod/_invocation/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'inv'.</P>
+<P>Contains all test cases for the module 'inv'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_nestedreg/uno/package.html b/qadevOOo/tests/java/mod/_nestedreg/uno/package.html
index a685f8299cf7..bee4740a1766 100644
--- a/qadevOOo/tests/java/mod/_nestedreg/uno/package.html
+++ b/qadevOOo/tests/java/mod/_nestedreg/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'defreg'.</P>
+<P>Contains all test cases for the module 'defreg'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_sc/ScHeaderFieldObj.java b/qadevOOo/tests/java/mod/_sc/ScHeaderFieldObj.java
index b59411129067..5c3e8fd6ee77 100644
--- a/qadevOOo/tests/java/mod/_sc/ScHeaderFieldObj.java
+++ b/qadevOOo/tests/java/mod/_sc/ScHeaderFieldObj.java
@@ -114,7 +114,7 @@ public class ScHeaderFieldObj extends TestCase {
* {@link ifc.text._XTextContent}(the interface <code>XTextContent</code>
* that was queried from the second created instance) </li>
* <li> <code>'TEXT'</code> for
- * {@link ifc.text._XTextContent}(the the text which is printed in the
+ * {@link ifc.text._XTextContent}(the text which is printed in the
* right part of the header or footer) </li>
* </ul>
* @see com.sun.star.style.XStyleFamiliesSupplier
diff --git a/qadevOOo/tests/java/mod/_servicemgr/uno/package.html b/qadevOOo/tests/java/mod/_servicemgr/uno/package.html
index 3d56f5a64d8e..bef49b8c50c7 100644
--- a/qadevOOo/tests/java/mod/_servicemgr/uno/package.html
+++ b/qadevOOo/tests/java/mod/_servicemgr/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'smgr'.</P>
+<P>Contains all test cases for the module 'smgr'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_shlibloader/uno/package.html b/qadevOOo/tests/java/mod/_shlibloader/uno/package.html
index 42b3235df1a0..1bc7bf11768a 100644
--- a/qadevOOo/tests/java/mod/_shlibloader/uno/package.html
+++ b/qadevOOo/tests/java/mod/_shlibloader/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'cpld'.</P>
+<P>Contains all test cases for the module 'cpld'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_simplereg/uno/package.html b/qadevOOo/tests/java/mod/_simplereg/uno/package.html
index 01098fe52bc1..b70d937939a5 100644
--- a/qadevOOo/tests/java/mod/_simplereg/uno/package.html
+++ b/qadevOOo/tests/java/mod/_simplereg/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'simreg'.</P>
+<P>Contains all test cases for the module 'simreg'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_streams/uno/package.html b/qadevOOo/tests/java/mod/_streams/uno/package.html
index c5c5e1f067d4..aa2793cf291a 100644
--- a/qadevOOo/tests/java/mod/_streams/uno/package.html
+++ b/qadevOOo/tests/java/mod/_streams/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'stm'.</P>
+<P>Contains all test cases for the module 'stm'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_typeconverter/uno/package.html b/qadevOOo/tests/java/mod/_typeconverter/uno/package.html
index 80a52e4fac1a..45007682b510 100644
--- a/qadevOOo/tests/java/mod/_typeconverter/uno/package.html
+++ b/qadevOOo/tests/java/mod/_typeconverter/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'tcv'.</P>
+<P>Contains all test cases for the module 'tcv'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_typemgr/uno/package.html b/qadevOOo/tests/java/mod/_typemgr/uno/package.html
index 5f6fc4287177..277a2804590d 100644
--- a/qadevOOo/tests/java/mod/_typemgr/uno/package.html
+++ b/qadevOOo/tests/java/mod/_typemgr/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'tdmgr'.</P>
+<P>Contains all test cases for the module 'tdmgr'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>
diff --git a/qadevOOo/tests/java/mod/_uuresolver/uno/package.html b/qadevOOo/tests/java/mod/_uuresolver/uno/package.html
index cb024997432c..20c38e20ea08 100644
--- a/qadevOOo/tests/java/mod/_uuresolver/uno/package.html
+++ b/qadevOOo/tests/java/mod/_uuresolver/uno/package.html
@@ -18,6 +18,6 @@
-->
<HTML>
<BODY>
-<P>Containes all test cases for the module 'uuresolver'.</P>
+<P>Contains all test cases for the module 'uuresolver'.</P>
</BODY>
-</HTML> \ No newline at end of file
+</HTML>