Skip to content

Commit

Permalink
Fix nightly (#6106)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertbastian authored Feb 12, 2025
1 parent 9238422 commit 2caaf3d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions components/datetime/src/fieldsets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1221,7 +1221,7 @@ pub mod zone {
/// ```compile_fail,E0271
/// use icu::calendar::{Date, Iso};
/// use icu::datetime::FixedCalendarDateTimeFormatter;
/// use icu::datetime::fieldsets::zone::{T, zone::SpecificShort};
/// use icu::datetime::fieldsets::{T, zone::SpecificShort};
/// use icu::locale::locale;
/// use icu::timezone::{DateTime, Time, TimeZoneBcp47Id, UtcOffset, ZoneVariant};
/// use tinystr::tinystr;
Expand Down Expand Up @@ -1404,7 +1404,6 @@ pub mod zone {
/// this time zone style requires a reference time.
///
/// ```compile_fail,E0271
/// use icu::calendar::{DateTime, Iso};
/// use icu::datetime::TimeFormatter;
/// use icu::datetime::fieldsets::zone::GenericLong;
/// use icu::timezone::TimeZoneBcp47Id;
Expand All @@ -1416,7 +1415,7 @@ pub mod zone {
///
/// let formatter = TimeFormatter::try_new(
/// locale!("en-US").into(),
/// V::new(),
/// GenericLong,
/// )
/// .unwrap();
///
Expand Down Expand Up @@ -1446,10 +1445,9 @@ pub mod zone {
/// this time zone style requires a reference time.
///
/// ```compile_fail,E0271
/// use icu::calendar::{DateTime, Iso};
/// use icu::datetime::FixedCalendarDateTimeFormatter;
/// use icu::datetime::fieldsets::zone::GenericShort;
/// use icu::timezone::{TimeZoneBcp47Id, UtcOffset};
/// use icu::timezone::TimeZoneBcp47Id;
/// use tinystr::tinystr;
/// use icu::locale::locale;
/// use writeable::assert_writeable_eq;
Expand Down

0 comments on commit 2caaf3d

Please sign in to comment.