@@ -454,13 +454,13 @@ fn make_format_string(settings: &Settings) -> &str {
454454///
455455/// Disambiguation rationale (GNU compatible):
456456/// - CST: Central Standard Time (US) preferred over China/Cuba Standard Time
457- /// - EST: Eastern Standard Time (US) preferred over Australian Eastern Standard Time
457+ /// - EST: Eastern Standard Time (US) preferred over Australian Eastern Standard Time
458458/// - IST: India Standard Time preferred over Israel/Irish Standard Time
459459/// - MST: Mountain Standard Time (US) preferred over Malaysia Standard Time
460460/// - PST: Pacific Standard Time (US) - widely used abbreviation
461461/// - GMT: Alias for UTC (universal)
462462///
463- /// All other timezones (AWST, JST, CET, etc.) are dynamically resolved from IANA database.
463+ /// All other timezones (AWST, JST, CET, etc.) are dynamically resolved from IANA database. // spell-checker:disable-line
464464static PREFERRED_TZ_MAPPINGS : & [ ( & str , & str ) ] = & [
465465 // Universal (no ambiguity, but commonly used)
466466 ( "UTC" , "UTC" ) ,
@@ -475,7 +475,7 @@ static PREFERRED_TZ_MAPPINGS: &[(&str, &str)] = &[
475475 ( "EST" , "America/New_York" ) , // Ambiguous: US vs Australia
476476 ( "EDT" , "America/New_York" ) ,
477477 // Other highly ambiguous cases
478- ( "IST" , "Asia/Kolkata" ) , // Ambiguous: India vs Israel vs Ireland
478+ ( "IST" , "Asia/Kolkata" ) , // Ambiguous: India vs Israel vs Ireland // spell-checker:disable-line
479479] ;
480480
481481/// Lazy-loaded timezone abbreviation lookup map built from IANA database.
@@ -493,7 +493,8 @@ fn build_tz_abbrev_map() -> HashMap<String, String> {
493493
494494 // Then, try to find additional abbreviations from IANA database
495495 // This gives us broader coverage while respecting disambiguation preferences
496- let tzdb = TimeZoneDatabase :: from_env ( ) ;
496+ let tzdb = TimeZoneDatabase :: from_env ( ) ; // spell-checker:disable-line
497+ // spell-checker:disable-next-line
497498 for tz_name in tzdb. available ( ) {
498499 let tz_str = tz_name. as_str ( ) ;
499500 // Skip if we already have a preferred mapping for this zone
0 commit comments