From 8c1bc63c9d6962629ca236b6bf69ba1a20cebd65 Mon Sep 17 00:00:00 2001 From: Guilherme Alan Ritter Date: Tue, 10 Jul 2018 10:30:56 -0300 Subject: [PATCH] Fix typo Closes gh-1880 --- src/docs/asciidoc/data-access.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/data-access.adoc b/src/docs/asciidoc/data-access.adoc index b09a8840fc..79e6fd6658 100644 --- a/src/docs/asciidoc/data-access.adoc +++ b/src/docs/asciidoc/data-access.adoc @@ -1835,7 +1835,7 @@ Code within the callback can roll the transaction back by calling the try { updateOperation1(); updateOperation2(); - } catch (SomeBusinessExeption ex) { + } catch (SomeBusinessException ex) { **status.setRollbackOnly();** } }