Commit 18dd1250 authored by Chad's avatar Chad Committed by Phillip Webb

Unescape quotation marks in JavaDoc

Closes gh-6482
parent 296dc713
......@@ -39,7 +39,7 @@ import org.springframework.util.Assert;
* <pre class="code">
* try {
* // do some test to determine state of component
* return new Health.Builder().up().withDetail(&quot;version&quot;, &quot;1.1.2&quot;).build();
* return new Health.Builder().up().withDetail("version", "1.1.2").build();
* }
* catch (Exception ex) {
* return new Health.Builder().down(ex).build();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment