Skip to content

Commit fe684e0

Browse files
committed
Remove a couple of comments that no longer apply.
1 parent fff9123 commit fe684e0

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/time/format.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,14 +161,12 @@ var d3_time_parsers = {
161161
"%": d3_time_parseLiteralPercent
162162
};
163163

164-
// Note: weekday is validated, but does not set the date.
165164
function d3_time_parseWeekdayAbbrev(date, string, i) {
166165
d3_time_dayAbbrevRe.lastIndex = 0;
167166
var n = d3_time_dayAbbrevRe.exec(string.substring(i));
168167
return n ? (date.w = d3_time_dayAbbrevLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;
169168
}
170169

171-
// Note: weekday is validated, but does not set the date.
172170
function d3_time_parseWeekday(date, string, i) {
173171
d3_time_dayRe.lastIndex = 0;
174172
var n = d3_time_dayRe.exec(string.substring(i));

0 commit comments

Comments
 (0)