Merge pull request #6482 from chadluo/patch-1

* patch-1:
  Unescape quotation marks in JavaDoc
This commit is contained in:
Phillip Webb 2016-07-26 21:42:49 -07:00
commit 0660f52abb
1 changed files with 1 additions and 1 deletions

View File

@ -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();