Github user jmewes commented on a diff in the pull request:
https://github.com/apache/wicket/pull/341#discussion_r235872341
--- Diff:
wicket-user-guide/src/main/asciidoc/modelsforms/modelsforms_2.adoc ---
@@ -53,7 +53,7 @@ LambdaModel.of(
() -> targetPerson::getName, targetPerson::setName
));
----
- * *flatMap(otherModel, combiner)*: Returns a _IModel_ applying the given
combining function to the current model object and to the one from the other
model, if they are not null. Example:
+ * *combineWith(otherModel, combiner)*: Returns an _IModel_ applying the
given combining function to the current model object and to the one from the
other model, if they are not null. Example:
--- End diff --
https://ci.apache.org/projects/wicket/apidocs/8.x/org/apache/wicket/model/IModel.html#combineWith-org.apache.wicket.model.IModel-org.danekja.java.util.function.serializable.SerializableBiFunction-
---