Skip to content

Commit

Permalink
fix: add explicit link to chrono method
Browse files Browse the repository at this point in the history
We don't actually import chrono so intra-doc links don't work.
  • Loading branch information
sd2k committed Dec 10, 2024
1 parent 9652eba commit eb05e66
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/augurs-prophet/src/features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ impl HolidayOccurrence {
/// in a timezone represented by the `utc_offset_seconds`.
///
/// The UTC offset can be calculated using, for example,
/// [`chrono::FixedOffset::local_minus_utc`]. Alternatively
/// [`chrono::FixedOffset::local_minus_utc`](lmu). Alternatively
/// it's the number of seconds to add to convert from the
/// local time to UTC, so UTC+1 is represented by `3600`
/// and UTC-5 by `-18000`.
Expand All @@ -91,6 +91,7 @@ impl HolidayOccurrence {
/// end times, e.g. by calculating them using [`chrono`].
///
/// [`chrono`]: https://docs.rs/chrono/latest/chrono
/// [lmu]: https://docs.rs/chrono/latest/chrono/struct.FixedOffset.html#method.local_minus_utc
pub fn for_day_in_tz(day: TimestampSeconds, utc_offset_seconds: i32) -> Self {
let day = floor_day(day, utc_offset_seconds);
Self {
Expand Down

0 comments on commit eb05e66

Please sign in to comment.