From 7f54ae109a074afa52ba5c3a0e244ce66ec3e91a 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 64d2e7145f..904c2bf052 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();** } }