You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/09/07 22:08:46 UTC

svn commit: r1166369 - /commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/CompositeUnaryFunction.java

Author: simonetripodi
Date: Wed Sep  7 20:08:46 2011
New Revision: 1166369

URL: http://svn.apache.org/viewvc?rev=1166369&view=rev
Log:
fixed checkstyle violations:
    Unclosed HTML tag found: <pre>new CompositeUnaryFunction(f).of(g)</code>
	Extra HTML tag found: </code>

Modified:
    commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/CompositeUnaryFunction.java

Modified: commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/CompositeUnaryFunction.java
URL: http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/CompositeUnaryFunction.java?rev=1166369&r1=1166368&r2=1166369&view=diff
==============================================================================
--- commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/CompositeUnaryFunction.java (original)
+++ commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/CompositeUnaryFunction.java Wed Sep  7 20:08:46 2011
@@ -26,7 +26,7 @@ import org.apache.commons.functor.UnaryF
  * {@link UnaryFunction UnaryFunctions},
  * "chaining" the output of one to the input
  * of another.  For example,
- * <pre>new CompositeUnaryFunction(f).of(g)</code>
+ * <pre>new CompositeUnaryFunction(f).of(g)</pre>
  * {@link #evaluate evaluates} to
  * <code>f.evaluate(g.evaluate(obj))</code>, and
  * <pre>new CompositeUnaryFunction(f).of(g).of(h)</pre>