This is an automated email from the ASF dual-hosted git repository.
xiaoyu 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 0183646 Update custom-sign-algorithm.md (#304)
0183646 is described below
commit 01836465fd3e97f4cd8cf9f0f15772182468e97e
Author: Qicz <[email protected]>
AuthorDate: Thu Sep 30 14:19:29 2021 +0800
Update custom-sign-algorithm.md (#304)
format
---
.../current/developer/custom-sign-algorithm.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/current/developer/custom-sign-algorithm.md
b/i18n/zh/docusaurus-plugin-content-docs/current/developer/custom-sign-algorithm.md
index 023356a..bcb2481 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/current/developer/custom-sign-algorithm.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/current/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();
+}
```