diff --git a/docs/system-design/framework/spring/Async.md b/docs/system-design/framework/spring/Async.md index 79a78bbf8d9..f36a0925ce2 100644 --- a/docs/system-design/framework/spring/Async.md +++ b/docs/system-design/framework/spring/Async.md @@ -441,7 +441,7 @@ Callable task = () -> { #### 3、提交异步任务 -在 `AsyncExecutionInterceptor # invoke()` 中将要执行的方法封装为 Callable 任务之后,就会将任务交给执行器来执行。提交相关的代码如下: +在 `AsyncExecutionInterceptor#invoke()` 中将要执行的方法封装为 Callable 任务之后,就会将任务交给执行器来执行。提交相关的代码如下: ```JAVA protected Object doSubmit(Callable task, AsyncTaskExecutor executor, Class returnType) { diff --git a/docs/system-design/framework/spring/async.md b/docs/system-design/framework/spring/async.md index 79a78bbf8d9..f36a0925ce2 100644 --- a/docs/system-design/framework/spring/async.md +++ b/docs/system-design/framework/spring/async.md @@ -441,7 +441,7 @@ Callable task = () -> { #### 3、提交异步任务 -在 `AsyncExecutionInterceptor # invoke()` 中将要执行的方法封装为 Callable 任务之后,就会将任务交给执行器来执行。提交相关的代码如下: +在 `AsyncExecutionInterceptor#invoke()` 中将要执行的方法封装为 Callable 任务之后,就会将任务交给执行器来执行。提交相关的代码如下: ```JAVA protected Object doSubmit(Callable task, AsyncTaskExecutor executor, Class returnType) {