From 6ce3bb858dbe79c49c0c15c94f0d60cf154ea0c6 Mon Sep 17 00:00:00 2001 From: Daniel Rainer Date: Mon, 10 Nov 2025 02:09:31 +0100 Subject: [PATCH] cleanup: fix swapped comments Part of #12041 --- src/history/file.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/history/file.rs b/src/history/file.rs index 35de393dd..e74b4b521 100644 --- a/src/history/file.rs +++ b/src/history/file.rs @@ -24,8 +24,8 @@ /// History file types. #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub enum HistoryFileType { - Fish2_0, // old format with just timestamp and item - Fish1_x, // YAML-style format + Fish1_x, // old format with just timestamp and item + Fish2_0, // YAML-style format } /// A type wrapping up the logic around mmap and munmap.