Fix @Transactional syntax error in reference manual

Closes gh-25021
This commit is contained in:
Yanming Zhou 2020-05-08 00:10:50 +08:00 committed by GitHub
parent 4e8a6b9695
commit 247662de6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 {
}
----