diff --git a/spring-framework-reference/src/expressions.xml b/spring-framework-reference/src/expressions.xml index 7bb8062d9c3..a26d05a7b0d 100644 --- a/spring-framework-reference/src/expressions.xml +++ b/spring-framework-reference/src/expressions.xml @@ -476,7 +476,7 @@ Boolean b = simple.booleanList.get(0); The types of literal expressions supported are strings, dates, numeric values (int, real, and hex), boolean and null. Strings are delimited by single quotes. To put a single quote itself in a string use - the backslash character. The following listing shows simple usage of + two single quote characters. The following listing shows simple usage of literals. Typically they would not be used in isolation like this, but as part of a more complex expression, for example using a literal on one side of a logical comparison operator. diff --git a/spring-framework-reference/src/validation.xml b/spring-framework-reference/src/validation.xml index dd9772d5d40..bd6633c4875 100644 --- a/spring-framework-reference/src/validation.xml +++ b/spring-framework-reference/src/validation.xml @@ -851,7 +851,7 @@ package org.springframework.core.convert.converter; public interface GenericConverter { - public Class[][] getConvertibleTypes(); + public Set getConvertibleTypes(); Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType);