Noticed an error on the Datepicker UI Format Date Example

Noticed an error on the Datepicker UI Format Date Example


In the UI website's Datepicker "Format Date" Example:
The Short and Medium options use a "y," but the drop down shows the
format as "yy."
    <select id="format">
        <option value="mm/dd/yy">Default - mm/dd/yy</option>
        <option value="yy-mm-dd">ISO 8601 - yy-mm-dd</option>
        <option value="d M, y">Short - d M, yy</option>
        <option value="d MM, y">Medium - d MM, yy</option>
        <option value="DD, d MM, yy">Full - DD, d MM, yy</option>
        <option value="'day' d 'of' MM 'in the year' yy">With text - 'day' d
'of' MM 'in the year' yy</option>
    </select>