You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by fa...@apache.org on 2022/01/23 14:26:24 UTC

svn commit: r1897372 - /poi/trunk/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java

Author: fanningpj
Date: Sun Jan 23 14:26:24 2022
New Revision: 1897372

URL: http://svn.apache.org/viewvc?rev=1897372&view=rev
Log:
[github-298] fix case issue in CORE_PROPERTIES_ECMA376

Modified:
    poi/trunk/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java

Modified: poi/trunk/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java?rev=1897372&r1=1897371&r2=1897372&view=diff
==============================================================================
--- poi/trunk/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java (original)
+++ poi/trunk/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java Sun Jan 23 14:26:24 2022
@@ -26,7 +26,7 @@ public interface PackageRelationshipType
      *
      *  <p>
      *  The standard specifies a source relations ship for the Core File Properties part as follows:
-     *  <code>http://schemas.openxmlformats.org/officedocument/2006/relationships/metadata/core-properties.</code>
+     *  <code>http://schemas.openxmlformats.org/officeDocument/2006/relationships/metadata/core-properties.</code>
      *  </p>
      *  <p>
      *   Office uses the following source relationship for the Core File Properties part:
@@ -37,9 +37,9 @@ public interface PackageRelationshipType
     String CORE_PROPERTIES = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties";
 
     /**
-     * Core properties relationship type as defiend in ECMA 376.
+     * Core properties relationship type as defined in ECMA 376.
      */
-    String CORE_PROPERTIES_ECMA376 = "http://schemas.openxmlformats.org/officedocument/2006/relationships/metadata/core-properties";
+    String CORE_PROPERTIES_ECMA376 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/metadata/core-properties";
 
     /**
      * Namespace of Core properties relationship type as defined in ECMA 376



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org