You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bv...@apache.org on 2012/07/26 20:19:38 UTC

svn commit: r1366124 - /camel/trunk/camel-core/src/main/java/org/apache/camel/TypeConverter.java

Author: bvahdat
Date: Thu Jul 26 18:19:37 2012
New Revision: 1366124

URL: http://svn.apache.org/viewvc?rev=1366124&view=rev
Log:
Corrected tiny javadoc typo.

Modified:
    camel/trunk/camel-core/src/main/java/org/apache/camel/TypeConverter.java

Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/TypeConverter.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/TypeConverter.java?rev=1366124&r1=1366123&r2=1366124&view=diff
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/TypeConverter.java (original)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/TypeConverter.java Thu Jul 26 18:19:37 2012
@@ -78,7 +78,7 @@ public interface TypeConverter {
     <T> T mandatoryConvertTo(Class<T> type, Exchange exchange, Object value) throws TypeConversionException, NoTypeConversionAvailableException;
 
     /**
-     * Tries to converts the value to the specified type,
+     * Tries to convert the value to the specified type,
      * returning <tt>null</tt> if not possible to convert.
      * <p/>
      * This method will <b>not</b> throw an exception if an exception occurred during conversion.
@@ -90,7 +90,7 @@ public interface TypeConverter {
     <T> T tryConvertTo(Class<T> type, Object value);
 
     /**
-     * Tries to converts the value to the specified type in the context of an exchange,
+     * Tries to convert the value to the specified type in the context of an exchange,
      * returning <tt>null</tt> if not possible to convert.
      * <p/>
      * This method will <b>not</b> throw an exception if an exception occurred during conversion.