Skip to content

Commit

Permalink
[#4093] Typo in Javadoc on DataType.asConvertedDataType()
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Feb 24, 2015
1 parent 7abab49 commit b6f1fd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jOOQ/src/main/java/org/jooq/DataType.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ public interface DataType<T> extends Serializable {
<U> DataType<U> asConvertedDataType(Converter<? super T, U> converter);

/**
* Retrieve the data type for a given converter.
* Retrieve the data type for a given binding.
*/
<U> DataType<U> asConvertedDataType(Binding<? super T, U> converter);
<U> DataType<U> asConvertedDataType(Binding<? super T, U> binding);

/**
* Retrieve the dialect-specific type name associated with this data type.
Expand Down

0 comments on commit b6f1fd0

Please sign in to comment.