Browse Source

Fix @Transactional syntax error in reference manual

Closes gh-25021
pull/25032/head
Yanming Zhou 6 years ago committed by GitHub
parent
commit
247662de6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/docs/asciidoc/data-access.adoc

2
src/docs/asciidoc/data-access.adoc

@ -1519,7 +1519,7 @@ following annotation definitions: @@ -1519,7 +1519,7 @@ following annotation definitions:
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Transactional("account", label = "retryable")
@Transactional(value = "account", label = "retryable")
public @interface AccountTx {
}
----

Loading…
Cancel
Save