修改错误单词拼写,由**Capcha**改为**Captcha**

This commit is contained in:
liuyuchuan
2022-02-08 18:08:22 +08:00
parent 1a1d6562d2
commit c57ec64e63
4 changed files with 10 additions and 10 deletions

View File

@@ -15,7 +15,7 @@ import reactor.core.publisher.Mono;
/**
* 验证码获取
*
*
* @author ruoyi
*/
@Component
@@ -30,7 +30,7 @@ public class ValidateCodeHandler implements HandlerFunction<ServerResponse>
AjaxResult ajax;
try
{
ajax = validateCodeService.createCapcha();
ajax = validateCodeService.createCaptcha();
}
catch (CaptchaException | IOException e)
{
@@ -38,4 +38,4 @@ public class ValidateCodeHandler implements HandlerFunction<ServerResponse>
}
return ServerResponse.status(HttpStatus.OK).body(BodyInserters.fromValue(ajax));
}
}
}