소스 검색

Fix formatting in reference docs

Eleftheria Stein 3 년 전
부모
커밋
759d983d62
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      docs/modules/ROOT/pages/servlet/configuration/java.adoc
  2. 2 2
      docs/modules/ROOT/pages/servlet/configuration/kotlin.adoc

+ 1 - 1
docs/modules/ROOT/pages/servlet/configuration/java.adoc

@@ -185,7 +185,7 @@ Note that this configuration is parallels the XML Namespace configuration:
 == Multiple HttpSecurity Instances
 
 We can configure multiple `HttpSecurity` instances just as we can have multiple `<http>` blocks in XML.
-The key is to register multiple `SecurityFilterChain` `@Bean`s.
+The key is to register multiple `SecurityFilterChain` ``@Bean``s.
 The following example has a different configuration for URL's that start with `/api/`.
 
 ====

+ 2 - 2
docs/modules/ROOT/pages/servlet/configuration/kotlin.adoc

@@ -55,8 +55,8 @@ Note that this configuration is parallels the XML namespace configuration:
 
 == Multiple HttpSecurity Instances
 
-We can configure multiple HttpSecurity instances, just as we can have multiple `<http>` blocks.
-The key is to register multiple `SecurityFilterChain` `@Bean`s.
+We can configure multiple `HttpSecurity` instances, just as we can have multiple `<http>` blocks.
+The key is to register multiple `SecurityFilterChain` ``@Bean``s.
 The following example has a different configuration for URL's that start with `/api/`:
 
 ====