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

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