summaryrefslogtreecommitdiff
path: root/unoxml/qa
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-09-29 18:12:38 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2015-09-30 06:04:21 +0000
commit53e6ac15a14b46c76049a9e6eb39da7bb4093037 (patch)
tree4ca4822554b29af4882e59f4e3cd8b95666899e4 /unoxml/qa
parenta6e622480f4cbc9bef65561984810298f317f709 (diff)
Fix typos
Change-Id: Ia7394ab3c0aa28002a7022e73c2b7d9eb73dacb8 Reviewed-on: https://gerrit.libreoffice.org/18991 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'unoxml/qa')
-rw-r--r--unoxml/qa/complex/unoxml/RDFRepositoryTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/unoxml/qa/complex/unoxml/RDFRepositoryTest.java b/unoxml/qa/complex/unoxml/RDFRepositoryTest.java
index ba2bdfd5ab9c..e9dbb3741999 100644
--- a/unoxml/qa/complex/unoxml/RDFRepositoryTest.java
+++ b/unoxml/qa/complex/unoxml/RDFRepositoryTest.java
@@ -103,10 +103,10 @@ public class RDFRepositoryTest
assertNotNull("uint", uint);
blank = BlankNode.create(xContext, "_:uno");
assertNotNull("blank", blank);
- lit = Literal.create(xContext, "i am the literal");
+ lit = Literal.create(xContext, "I am the literal");
assertNotNull("lit", lit);
litlang = Literal.createWithLanguage(xContext,
- "i am the literal", "en");
+ "I am the literal", "en");
assertNotNull("litlang", litlang);
littype = Literal.createWithType(xContext, "42", uint);
assertNotNull("littype", littype);
@@ -441,7 +441,7 @@ public class RDFRepositoryTest
try {
System.out.println("Checking RDFa gunk...");
- String content = "behold, for i am the content.";
+ String content = "behold, for I am the content.";
XTextRange xTR = new TestRange(content);
XMetadatable xM = (XMetadatable) xTR;