From 78f3de40be63244afd73e6e0c61006d11e61f6ba Mon Sep 17 00:00:00 2001 From: Jack Wills <32690432+mrjackwills@users.noreply.github.com> Date: Tue, 22 Oct 2024 09:56:14 +0000 Subject: [PATCH] fix: docs typo --- src/app_data/container_state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app_data/container_state.rs b/src/app_data/container_state.rs index 7eccb32..1dd717a 100644 --- a/src/app_data/container_state.rs +++ b/src/app_data/container_state.rs @@ -492,7 +492,7 @@ pub type MemTuple = (Vec<(f64, f64)>, ByteStats, State); pub type CpuTuple = (Vec<(f64, f64)>, CpuStats, State); /// Used to make sure that each log entry, for each container, is unique, -/// will only push a log entry into the logs vec if timetstamp of said log entry isn't in the hashset +/// will only push a log entry into the logs vec if timestamp of said log entry isn't in the hashset #[derive(Debug, Clone, Hash, PartialEq, Eq)] pub struct LogsTz(String);