diff options
| author | Ray Kohler <ataraxia937@users.noreply.github.com> | 2025-08-04 08:40:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-04 14:40:02 +0200 |
| commit | a730f60cc0e3a46ae869098ea8355cd3e4c4bee1 (patch) | |
| tree | a313013e763ee106bd3bd0083717118658dc13b6 /crates/atuin-client | |
| parent | fix: clippy issues on Windows (#2856) (diff) | |
| download | atuin-a730f60cc0e3a46ae869098ea8355cd3e4c4bee1.zip | |
fix: honor timezone in inspector stats (#2853)
* fix: honor timezone in inspector stats
fixes: #2567
* docs: fix rustdoc warning about URL markup
* fix: pass timezone by value, as suggested by clippy (oops)
Diffstat (limited to 'crates/atuin-client')
| -rw-r--r-- | crates/atuin-client/src/settings.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/atuin-client/src/settings.rs b/crates/atuin-client/src/settings.rs index 2ffba5e4..87fe8d32 100644 --- a/crates/atuin-client/src/settings.rs +++ b/crates/atuin-client/src/settings.rs @@ -134,7 +134,7 @@ impl From<Dialect> for interim::Dialect { /// Note that the parsing of this struct needs to be done before starting any /// multithreaded runtime, otherwise it will fail on most Unix systems. /// -/// See: https://github.com/atuinsh/atuin/pull/1517#discussion_r1447516426 +/// See: <https://github.com/atuinsh/atuin/pull/1517#discussion_r1447516426> #[derive(Clone, Copy, Debug, Eq, PartialEq, DeserializeFromStr, Serialize)] pub struct Timezone(pub UtcOffset); impl fmt::Display for Timezone { |
