From 9b24cc503552cf8d51292df81c0bb0c274762930 Mon Sep 17 00:00:00 2001 From: mgooty Date: Tue, 20 Jan 2015 14:20:25 +0530 Subject: [PATCH] Fix method documentation typo Issue: SPR-12639 --- 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 a9330026ac..52a05708bb 100644 --- a/src/asciidoc/index.adoc +++ b/src/asciidoc/index.adoc @@ -26196,7 +26196,7 @@ of the generated key column with the `usingGeneratedKeyColumns` method. ---- The main difference when executing the insert by this second approach is that you do not -add the id to the Map and you call the `executeReturningKey` method. This returns a +add the id to the Map and you call the `executeAndReturnKey` method. This returns a `java.lang.Number` object with which you can create an instance of the numerical type that 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