diff options
author | PJ Fanning <fanningpj@apache.org> | 2022-01-23 14:26:24 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2022-01-23 14:26:24 +0000 |
commit | 981b1ccf033eeb291c6a915cdd6a04958b2f111b (patch) | |
tree | 878b62fc10b81b161e3abf1ea951a08fd767d35e /poi-ooxml | |
parent | e71e6027620f832bac07607d4f066c4f76f348ac (diff) | |
download | poi-981b1ccf033eeb291c6a915cdd6a04958b2f111b.tar.gz poi-981b1ccf033eeb291c6a915cdd6a04958b2f111b.zip |
[github-298] fix case issue in CORE_PROPERTIES_ECMA376
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1897372 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml')
-rw-r--r-- | poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java b/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java index b5a13f875b..1dc1529a8b 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java +++ b/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/PackageRelationshipTypes.java @@ -26,7 +26,7 @@ public interface PackageRelationshipTypes { * * <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 PackageRelationshipTypes { 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 |