From a352daa89734d94dfa95bede10d3afb387edde7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=8D=E5=88=B6=E7=B2=98=E8=B4=B4=E5=A7=94=E5=91=98?= =?UTF-8?q?=E4=BC=9A=E9=A6=96=E5=B8=AD=E6=8A=80=E6=9C=AF=E4=B8=93=E5=AE=B6?= =?UTF-8?q?=2C=20=E5=8A=A0=E9=87=8C=E6=95=A6=E5=A4=A7=E5=AD=A6=E8=91=97?= =?UTF-8?q?=E5=90=8Dbug=E6=9E=B6=E6=9E=84=E5=B8=88?= <88390761+visitor23@users.noreply.github.com> Date: Sat, 2 Mar 2024 15:04:50 +0800 Subject: [PATCH] typo fixed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复了一处错字, 将 '这个参数里面的参数' 改正为 '这个注解里面的参数' --- docs/system-design/framework/spring/spring-transaction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/system-design/framework/spring/spring-transaction.md b/docs/system-design/framework/spring/spring-transaction.md index 368e69ac..47eac108 100644 --- a/docs/system-design/framework/spring/spring-transaction.md +++ b/docs/system-design/framework/spring/spring-transaction.md @@ -276,7 +276,7 @@ public interface TransactionStatus{ ### 事务属性详解 -实际业务开发中,大家一般都是使用 `@Transactional` 注解来开启事务,很多人并不清楚这个参数里面的参数是什么意思,有什么用。为了更好的在项目中使用事务管理,强烈推荐好好阅读一下下面的内容。 +实际业务开发中,大家一般都是使用 `@Transactional` 注解来开启事务,很多人并不清楚这个注解里面的参数是什么意思,有什么用。为了更好的在项目中使用事务管理,强烈推荐好好阅读一下下面的内容。 #### 事务传播行为