This is an automated email from the ASF dual-hosted git repository.
midnight2104 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-shenyu-website.git
The following commit(s) were added to refs/heads/main by this push:
new 2fb9d63 format the doc (#241)
2fb9d63 is described below
commit 2fb9d6365499e322753ccf744dcb51acd3e58d2c
Author: Qicz <[email protected]>
AuthorDate: Fri Sep 3 18:51:09 2021 +0800
format the doc (#241)
---
.../version-2.4.0/developer/custom-sign-algorithm.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.0/developer/custom-sign-algorithm.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.0/developer/custom-sign-algorithm.md
index 023356a..0545f0a 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.0/developer/custom-sign-algorithm.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.0/developer/custom-sign-algorithm.md
@@ -33,10 +33,10 @@ description: 自定义sign插件检验
* 把新增的实现类注册成为`Spring`的`bean`,如下
```java
- @Bean
+@Bean
public SignService customSignService() {
- return new CustomSignService();
- }
+ return new CustomSignService();
+}
```