Fix Javadocs
[lgpl/argeo-commons.git] / org.argeo.api.acr / src / org / argeo / api / acr / AttributeFormatter.java
index 41600331a21b756b634280c09ef70ab40aeb7af1..c7023f1a37a4a58b2582fc62e4f9f7d509fb7336 100644 (file)
@@ -4,9 +4,8 @@ package org.argeo.api.acr;
  * An attribute type MUST consistently parse a string to an object so that
  * <code>parse(obj.toString()).equals(obj)</code> is verified.
  * {@link #format(Object)} can be overridden to provide more efficient
- * implementations but the returned
- * <code>String<code> MUST be the same, that is <code>format(obj).equals(obj.toString())</code>
- * is verified.
+ * implementations but the returned <code>String</code> MUST be the same, that
+ * is <code>format(obj).equals(obj.toString())</code> is verified.
  */
 public interface AttributeFormatter<T> {
        /** Parses a String to a Java object. */