]> source.dussan.org Git - poi.git/commitdiff
javadoc fix
authorAndreas Beeker <kiwiwings@apache.org>
Sat, 1 Feb 2014 23:23:07 +0000 (23:23 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Sat, 1 Feb 2014 23:23:07 +0000 (23:23 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1563509 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/openxml4j/opc/TargetMode.java

index 834c2ad66e0e71321064808cf36ad30b378bb829..59f45f5386d7bda303d301c76354a77cbf9e5fd1 100644 (file)
@@ -25,8 +25,8 @@ package org.apache.poi.openxml4j.opc;
  * @version 1.0
  */
 public enum TargetMode {
-       /** The relationship references a resource that is external to the package. */
+    /** The relationship references a part that is inside the package. */
        INTERNAL,
-       /** The relationship references a part that is inside the package. */
+    /** The relationship references a resource that is external to the package. */
        EXTERNAL
 }