From b5e80390de5a7d6f9ab7feab9fcfee6b6c3ef290 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Wed, 18 Feb 2015 22:28:36 +0100 Subject: [PATCH] Correct reference to executeAndReturnKey method Issue: SPR-12639 (cherry picked from commit f20a624) --- src/asciidoc/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asciidoc/index.adoc b/src/asciidoc/index.adoc index afab615b78..6a5f2daf65 100644 --- a/src/asciidoc/index.adoc +++ b/src/asciidoc/index.adoc @@ -26203,7 +26203,7 @@ add the id to the Map and you call the `executeAndReturnKey` method. This return is used in our domain class. You cannot rely on all databases to return a specific Java class here; `java.lang.Number` is the base class that you can rely on. If you have multiple auto-generated columns, or the generated values are non-numeric, then you can -use a `KeyHolder` that is returned from the `executeReturningKeyHolder` method. +use a `KeyHolder` that is returned from the `executeAndReturnKeyHolder` method.