summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-23 22:25:57 +0200
committerAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-24 23:36:21 +0200
commit6131288f2a85d43ba21210e677648c9245793e52 (patch)
treef8299ebc3e5a143db2cd3d140087e5b7d0b706d1 /offapi
parentafad1a0cbc893291ea32baa7234c4ed7a5ffcf80 (diff)
Fix typo
"an URI", to complete: https://gerrit.libreoffice.org/#/c/75985/ Change-Id: I57489b05117fd12ae6aa22544437ab5bc6b5154f Reviewed-on: https://gerrit.libreoffice.org/76037 Tested-by: Jenkins Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/rdf/URI.idl8
-rw-r--r--offapi/com/sun/star/rdf/XDocumentMetadataAccess.idl4
-rw-r--r--offapi/com/sun/star/rdf/XLiteral.idl2
-rw-r--r--offapi/com/sun/star/rdf/XURI.idl6
4 files changed, 10 insertions, 10 deletions
diff --git a/offapi/com/sun/star/rdf/URI.idl b/offapi/com/sun/star/rdf/URI.idl
index b057e42660d6..dbdbc2248227 100644
--- a/offapi/com/sun/star/rdf/URI.idl
+++ b/offapi/com/sun/star/rdf/URI.idl
@@ -27,7 +27,7 @@
module com { module sun { module star { module rdf {
-/** represents an URI node that may occur in a RDF graph.
+/** represents a URI node that may occur in a RDF graph.
@since OOo 3.0
@@ -36,7 +36,7 @@ module com { module sun { module star { module rdf {
service URI : XURI
{
- /** creates an URI RDF node.
+ /** creates a URI RDF node.
@param Value
the URI, represented as `string`.
@@ -47,7 +47,7 @@ service URI : XURI
create( [in] string Value )
raises( com::sun::star::lang::IllegalArgumentException );
- /** creates an URI RDF node from namespace prefix and local name.
+ /** creates a URI RDF node from namespace prefix and local name.
@param Namespace
the namespace prefix of the URI, represented as
@@ -62,7 +62,7 @@ service URI : XURI
createNS( [in] string Namespace, [in] string LocalName )
raises( com::sun::star::lang::IllegalArgumentException );
- /** creates an URI RDF node for a well-known URI.
+ /** creates a URI RDF node for a well-known URI.
@param Id
the URI, represented as a constant from URIs.
diff --git a/offapi/com/sun/star/rdf/XDocumentMetadataAccess.idl b/offapi/com/sun/star/rdf/XDocumentMetadataAccess.idl
index 8760322ddbe1..b7d143555feb 100644
--- a/offapi/com/sun/star/rdf/XDocumentMetadataAccess.idl
+++ b/offapi/com/sun/star/rdf/XDocumentMetadataAccess.idl
@@ -77,10 +77,10 @@ interface XDocumentMetadataAccess
XMetadatable getElementByMetadataReference(
[in] com::sun::star::beans::StringPair MetadataReference);
- /** get the ODF element that corresponds to an URI.
+ /** get the ODF element that corresponds to a URI.
@param URI
- an URI that may identify an ODF element
+ a URI that may identify an ODF element
@returns
the ODF element that corresponds to the given URI, or `NULL`
diff --git a/offapi/com/sun/star/rdf/XLiteral.idl b/offapi/com/sun/star/rdf/XLiteral.idl
index de67596b35d1..7366d021fe7f 100644
--- a/offapi/com/sun/star/rdf/XLiteral.idl
+++ b/offapi/com/sun/star/rdf/XLiteral.idl
@@ -33,7 +33,7 @@ module com { module sun { module star { module rdf {
<ul>
<li>just a string Value</li>
<li>Value and Language</li>
- <li>typed literal: Value and Datatype (represented by an URI)</li>
+ <li>typed literal: Value and Datatype (represented by a URI)</li>
</ul>
Note that there is no literal with both Language and Datatype.
</p>
diff --git a/offapi/com/sun/star/rdf/XURI.idl b/offapi/com/sun/star/rdf/XURI.idl
index 1d08b9cfeb45..5386186d9ede 100644
--- a/offapi/com/sun/star/rdf/XURI.idl
+++ b/offapi/com/sun/star/rdf/XURI.idl
@@ -26,7 +26,7 @@
module com { module sun { module star { module rdf {
-/** represents an URI node that may occur in a RDF graph.
+/** represents a URI node that may occur in a RDF graph.
<p>
Note that this is actually an IRI, but the RDF literature speaks of URIs
@@ -41,8 +41,8 @@ module com { module sun { module star { module rdf {
<li>after the last occurrence of the path separator: "/"</li>
<li>after the last occurrence of the scheme separator: ":"</li>
</ol>
- An URI without a ":" is invalid.
- This implies that the Namespace part of an URI must not be empty, while
+ A URI without a ":" is invalid.
+ This implies that the Namespace part of a URI must not be empty, while
the LocalName part may be empty.
</p>