From dd3a938465fd61265971906991c6ff88af3477fc Mon Sep 17 00:00:00 2001 From: daladim Date: Tue, 17 Aug 2021 23:27:59 +0200 Subject: [PATCH] Fix URL in a doc comment (#355) --- src/read/coff/section.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/read/coff/section.rs b/src/read/coff/section.rs index e499054d..21916210 100644 --- a/src/read/coff/section.rs +++ b/src/read/coff/section.rs @@ -80,8 +80,8 @@ impl<'data> SectionTable<'data> { /// Compute the maximum file offset used by sections. /// - /// This will usually match the end of file, unless the PE file has a [data overlay] - /// (https://security.stackexchange.com/questions/77336/how-is-the-file-overlay-read-by-an-exe-virus) + /// This will usually match the end of file, unless the PE file has a + /// [data overlay](https://security.stackexchange.com/questions/77336/how-is-the-file-overlay-read-by-an-exe-virus) pub fn max_section_file_offset(&self) -> u64 { let mut max = 0; for section in self.iter() {