From 72069618d1d46de24401faab0113bf20fd06f115 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Mon, 7 Aug 2023 10:38:28 -0300 Subject: [PATCH] Added a note about why I was trying to do so --- content/code/seek-test.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/content/code/seek-test.md b/content/code/seek-test.md index ea2ceee..ec1f2dd 100644 --- a/content/code/seek-test.md +++ b/content/code/seek-test.md @@ -97,3 +97,11 @@ async fn main() { } } ``` + +{% note() %} +The actual effect for using this is that I need to walk two of those files at +the same time. By walking the first file, grabbing the headers and then +returning to the actual data and doing the same with the second file, I could +avoid an issue of files with different header sizes (e.g., the second file was +updated with new comments before the actual header). +{% end %}