From 89c18d4dec2489973ede196cf70218d1571e3840 Mon Sep 17 00:00:00 2001 From: George Macon Date: Mon, 14 Oct 2024 09:16:31 -0400 Subject: [PATCH] Fix typo --- src/pcapng/reader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pcapng/reader.rs b/src/pcapng/reader.rs index ff13a6a..6d5323a 100644 --- a/src/pcapng/reader.rs +++ b/src/pcapng/reader.rs @@ -84,7 +84,7 @@ use std::io::Read; /// Err(PcapError::Incomplete(_)) => { /// if last_incomplete_index == num_blocks { /// eprintln!("Could not read complete data block."); -/// eprintln!("Hint: the reader buffer size may be too small, or the input file nay be truncated."); +/// eprintln!("Hint: the reader buffer size may be too small, or the input file may be truncated."); /// break; /// } /// last_incomplete_index = num_blocks;