diff --git a/flow-data/src/main/java/com/vaadin/flow/data/converter/Converter.java b/flow-data/src/main/java/com/vaadin/flow/data/converter/Converter.java index 9ced96e3eaa..cfe29a202ce 100644 --- a/flow-data/src/main/java/com/vaadin/flow/data/converter/Converter.java +++ b/flow-data/src/main/java/com/vaadin/flow/data/converter/Converter.java @@ -40,7 +40,7 @@ public interface Converter extends Serializable { /** - * Converts the given value from model type to presentation type. + * Converts the given value from presentation type to model type. *

* A converter can optionally use locale to do the conversion. * @@ -53,7 +53,7 @@ public interface Converter extends Serializable { Result convertToModel(PRESENTATION value, ValueContext context); /** - * Converts the given value from presentation type to model type. + * Converts the given value from model type to presentation type. *

* A converter can optionally use locale to do the conversion. *