Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8255533: Incorrect javadoc in DateTimeFormatterBuilder.appendPattern(…
…) for 'uu'/'yy'

Reviewed-by: lancea, rriggs
  • Loading branch information
naotoj committed Oct 28, 2020
1 parent 3f20612 commit 790d6e2
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -1556,11 +1556,11 @@ public DateTimeFormatterBuilder appendOptional(DateTimeFormatter formatter) {
* GGGGG 5 appendText(ChronoField.ERA, TextStyle.NARROW)
*
* u 1 appendValue(ChronoField.YEAR, 1, 19, SignStyle.NORMAL)
* uu 2 appendValueReduced(ChronoField.YEAR, 2, 2000)
* uu 2 appendValueReduced(ChronoField.YEAR, 2, 2, 2000)
* uuu 3 appendValue(ChronoField.YEAR, 3, 19, SignStyle.NORMAL)
* u..u 4..n appendValue(ChronoField.YEAR, n, 19, SignStyle.EXCEEDS_PAD)
* y 1 appendValue(ChronoField.YEAR_OF_ERA, 1, 19, SignStyle.NORMAL)
* yy 2 appendValueReduced(ChronoField.YEAR_OF_ERA, 2, 2000)
* yy 2 appendValueReduced(ChronoField.YEAR_OF_ERA, 2, 2, 2000)
* yyy 3 appendValue(ChronoField.YEAR_OF_ERA, 3, 19, SignStyle.NORMAL)
* y..y 4..n appendValue(ChronoField.YEAR_OF_ERA, n, 19, SignStyle.EXCEEDS_PAD)
* Y 1 append special localized WeekFields element for numeric week-based-year
Expand Down

1 comment on commit 790d6e2

@bridgekeeper
Copy link

@bridgekeeper bridgekeeper bot commented on 790d6e2 Oct 28, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.