You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2016/12/27 15:05:34 UTC

svn commit: r1776143 - /jmeter/trunk/src/core/org/apache/jmeter/report/processor/ResultData.java

Author: fschumacher
Date: Tue Dec 27 15:05:34 2016
New Revision: 1776143

URL: http://svn.apache.org/viewvc?rev=1776143&view=rev
Log:
Javadoc: Correct typo and add missing return description

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/report/processor/ResultData.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/report/processor/ResultData.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/report/processor/ResultData.java?rev=1776143&r1=1776142&r2=1776143&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/report/processor/ResultData.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/report/processor/ResultData.java Tue Dec 27 15:05:34 2016
@@ -29,7 +29,9 @@ public interface ResultData {
      *
      * @param visitor
      *            the visitor (must not be {@code null})
-     * @paran <T> type of the results of the {@link ResultDataVisitor}
+     * @param <T>
+     *            type of the results of the {@link ResultDataVisitor}
+     * @return result of the vist
      */
     <T> T accept(ResultDataVisitor<T> visitor);
 }