Fix typo in DateTimeFormat Javadoc

Issue: SPR-8838
This commit is contained in:
Chris Beams 2011-11-13 01:38:44 +00:00
parent b167b75453
commit 4ededaf11c
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ import java.lang.annotation.Target;
* <p>
* For ISO-based formatting, set the {@link #iso()} attribute to be the desired {@link ISO} format, such as {@link ISO#DATE}.
<p>
* For custom formatting, set the {@link #pattern()} attribute to be the DateTime pattern, such as <code>yyyy/mm/dd h:mm:ss a</code>.
* For custom formatting, set the {@link #pattern()} attribute to be the DateTime pattern, such as <code>yyyy/MM/dd hh:mm:ss a</code>.
* <p>
* Each attribute is mutually exclusive, so only set one attribute per annotation instance (the one most convenient one for your formatting needs).
* When the pattern attribute is specified, it takes precedence over both the style and ISO attribute.