From 37c9b26ff83e5cad209a263527edc290f96abe85 Mon Sep 17 00:00:00 2001 From: Vasyl Tretiakov Date: Fri, 13 Dec 2013 21:39:28 +0200 Subject: [PATCH] Fix various documentation issues - Remove formatting that interferes with code highlighting - Fix some XML syntax issues - Added missing punctuation --- src/asciidoc/index.adoc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/asciidoc/index.adoc b/src/asciidoc/index.adoc index 6459e457a9..6223477405 100644 --- a/src/asciidoc/index.adoc +++ b/src/asciidoc/index.adoc @@ -2299,7 +2299,7 @@ validate the bean id earlier, at XML document parse time. [subs="verbatim,quotes"] ---- - + ---- @@ -2575,7 +2575,7 @@ various value elements as being of type `Float`, and the string values `9.99, 2. ===== Null and empty string values Spring treats empty arguments for properties and the like as empty `Strings`. The following XML-based configuration metadata snippet sets the email property to the empty -`String` value ("") +`String` value (""). [source,xml,indent=0] [subs="verbatim,quotes"] @@ -2690,7 +2690,7 @@ Similar to the <>, the __c-namespace__, newly introduced in S 3.1, allows usage of inlined attributes for configuring the constructor arguments rather then nested `constructor-arg` elements. -Let's review the examples from <> with the `c` namespace: +Let's review the examples from <> with the `c:` namespace: [source,java,indent=0] [subs="verbatim,quotes"] @@ -2704,15 +2704,15 @@ Let's review the examples from <> with the `c` name - <-- 'traditional' declaration --> + - <-- 'c-namespace' declaration --> - + + ---- @@ -2729,8 +2729,8 @@ argument indexes: [source,java,indent=0] [subs="verbatim,quotes"] ---- - <-- 'c-namespace' index declaration --> - + + ---- [NOTE] @@ -2781,8 +2781,8 @@ dependency on a single bean: [source,xml,indent=0] [subs="verbatim,quotes"] ---- - - + + ---- To express a dependency on multiple beans, supply a list of bean names as the value of @@ -2828,7 +2828,7 @@ element; for example: [source,xml,indent=0] [subs="verbatim,quotes"] ---- - + ---- -- GitLab