Commit 0660f52a authored by Phillip Webb's avatar Phillip Webb

Merge pull request #6482 from chadluo/patch-1

* patch-1:
  Unescape quotation marks in JavaDoc
parents 296dc713 18dd1250
......@@ -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