Преглед на файлове

Fix formatting in reference docs

Eleftheria Stein преди 3 години
родител
ревизия
d4d6ddbaae
променени са 2 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 2 2
      docs/modules/ROOT/pages/servlet/configuration/java.adoc
  2. 1 1
      docs/modules/ROOT/pages/servlet/configuration/kotlin.adoc

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

@@ -171,8 +171,8 @@ You will notice that this configuration is quite similar the XML Namespace confi
 
 == Multiple HttpSecurity
 
-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.
 For example, the following is an example of having a different configuration for URL's that start with `/api/`.
 
 [source,java]

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

@@ -49,7 +49,7 @@ You will notice that this configuration is quite similar the XML Namespace confi
 == Multiple HttpSecurity
 
 We can configure multiple HttpSecurity instances just as we can have multiple `<http>` blocks.
-The key is to register multiple `SecurityFilterChain` `@Bean`s.
+The key is to register multiple `SecurityFilterChain` ``@Bean``s.
 For example, the following is an example of having a different configuration for URL's that start with `/api/`.
 
 [source,kotlin]