@@ -170,7 +170,8 @@ inline int8_t compareYearMonth(int16_t aYear, uint8_t aMonth,
170170 * simplify the implementation of this class. The tzcompiler.py script will
171171 * remove zones which do not meet these constraints when generating the structs
172172 * defined by zonedb/zone_infos.h. The constraints are at least the following
173- * (see AceTimeTools/transformer.py for the authoratative algorithm):
173+ * (see AceTimeSuite/compiler/src/acetimecompiler/transformer/transformer.py for
174+ * the authoratative algorithm):
174175 *
175176 * * ZoneInfo UNTIL field must contain only the full year;
176177 * cannot contain month, day, or time components
@@ -428,9 +429,9 @@ class BasicZoneProcessorTemplate: public ZoneProcessor {
428429 * support these zones, if the UTC date is 1/1, then we force the
429430 * transition cache to be generated using the *previous* year. This
430431 * workaround will fail for zones which have DST transitions on 1/1.
431- * Therefore, the zone_info.h generator (AceTimeTools/tzcompiler.py) removes
432- * all zones which have time zone transitions on 1/1 from the list of
433- * supported zones.
432+ * Therefore, the zone_info.h generator
433+ * (AceTimeSuite/compiler/tzcompiler.sh) removes all zones which have time
434+ * zone transitions on 1/1 from the list of supported zones.
434435 *
435436 * The high level algorithm for determining the DST transitions is as
436437 * follows:
@@ -701,9 +702,9 @@ class BasicZoneProcessorTemplate: public ZoneProcessor {
701702 // If a zone needs more transitions than kMaxCacheEntries, the check below
702703 // will cause the DST transition information to be inaccurate, and it is
703704 // highly likely that this situation would be caught in the
704- // AceTimeValidation tests. Since these integration tests pass, I feel
705- // confident that those zones which need more than kMaxCacheEntries are
706- // already filtered out by tzcompiler.py.
705+ // AceTimeSuite/validation/ tests. Since these integration tests pass, I
706+ // feel confident that those zones which need more than kMaxCacheEntries
707+ // are already filtered out by tzcompiler.py.
707708 //
708709 // Ideally, the tzcompiler.py script would explicitly remove those zones
709710 // which need more than kMaxCacheEntries Transitions. But this would
0 commit comments