In the ri document of Repository#entries, 4 digits pattern specifies year only or month and day.
However, in FileSystemRepository#entries, 4 digits pattern such "1116" matches to not only "Nov. 16th" but "11:16" or "11 minute 16 second".
That is, FileSystemRepository#entries("1116") might match the followings:
20201116131700
20200901111600
20201030121116
According to the spec (the ri doc), 1116 pattern must not match the 2nd and the 3rd ones.
In the ri document of
Repository#entries
, 4 digits pattern specifies year only or month and day. However, inFileSystemRepository#entries
, 4 digits pattern such "1116" matches to not only "Nov. 16th" but "11:16" or "11 minute 16 second".That is,
FileSystemRepository#entries("1116")
might match the followings:20201116131700
20200901111600
20201030121116
According to the spec (the ri doc),
1116
pattern must not match the 2nd and the 3rd ones.