diff --git a/spring-webflow-reference/src/views.xml b/spring-webflow-reference/src/views.xml
index c5540850..a4804644 100644
--- a/spring-webflow-reference/src/views.xml
+++ b/spring-webflow-reference/src/views.xml
@@ -220,7 +220,6 @@ public class StringToMonetaryAmount extends StringToObject {
To install your own Converter or override any of the default Converters, extend from org.springframework.binding.convert.service.DefaultConversionService and override the addDefaultConverters() method.
Use the addConverter(Converter) method to register the primary Converter to use to convert between two types, such as a String and a MonetaryAmount.
Optionally use the addConverter(String, Converter) method to register alternate converters for the same type pair; for example, to support formatting a java.util.Date as a String in several different ways.
- Consult the Convert JavaDoc API documentation for more information.
Each alternate Converter is indexed by a unique converterId that can be referenced when configuring a model binding.
@@ -230,6 +229,7 @@ public class StringToMonetaryAmount extends StringToObject {
The ConversionService is the object Web Flow consults at runtime to lookup conversion executors to convert from one type to another.
There is generally one ConversionService per application.
See the System Setup section for documentation on how to configure an extended ConversionService implementation that registers custom Converters.
+ Also consult the Convert API documentation for more information.