Incorrect used of {@link}.

Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo
Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/aa89e5b3
Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/aa89e5b3
Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/aa89e5b3

Branch: refs/heads/develop
Commit: aa89e5b30b074bb05118ebf1eb6f51bc6cc6a2f3
Parents: 7970011
Author: niclas <[email protected]>
Authored: Wed Apr 12 17:02:05 2017 +0800
Committer: niclas <[email protected]>
Committed: Wed Apr 12 17:02:05 2017 +0800

----------------------------------------------------------------------
 .../java/org/apache/polygene/api/serialization/Converter.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/polygene-java/blob/aa89e5b3/core/api/src/main/java/org/apache/polygene/api/serialization/Converter.java
----------------------------------------------------------------------
diff --git 
a/core/api/src/main/java/org/apache/polygene/api/serialization/Converter.java 
b/core/api/src/main/java/org/apache/polygene/api/serialization/Converter.java
index b411ad3..243e64c 100644
--- 
a/core/api/src/main/java/org/apache/polygene/api/serialization/Converter.java
+++ 
b/core/api/src/main/java/org/apache/polygene/api/serialization/Converter.java
@@ -20,7 +20,7 @@ package org.apache.polygene.api.serialization;
 /**
  * Converter for (de)serialization.
  *
- * Convert instances of {@link T} to String and the other way around.
+ * Convert instances of {@code T} to String and the other way around.
  *
  * @param <T> the converted type
  */
@@ -34,7 +34,7 @@ public interface Converter<T>
     /**
      * Convert.
      *
-     * @param object the {@link T} to convert to String, never null
+     * @param object the {@code T} to convert to String, never null
      * @return the String representation of the given object
      */
     String toString( T object );
@@ -42,7 +42,7 @@ public interface Converter<T>
     /**
      * Revert.
      *
-     * @param string the String to convert back to {@link T}
+     * @param string the String to convert back to {@code T}
      * @return the {@link T}
      */
     T fromString( String string );

Reply via email to