浏览代码

Fix convention

Jisoo Youn 7 年之前
父节点
当前提交
3f3a3e8351
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/manual/src/docs/asciidoc/_includes/test/method.adoc

+ 1 - 1
docs/manual/src/docs/asciidoc/_includes/test/method.adoc

@@ -11,7 +11,7 @@ public class HelloMessageService implements MessageService {
 	@PreAuthorize("authenticated")
 	public String getMessage() {
 		Authentication authentication = SecurityContextHolder.getContext()
-															.getAuthentication();
+			.getAuthentication();
 		return "Hello " + authentication;
 	}
 }