Skip to content

Commit

Permalink
Fix URL in a doc comment (#355)
Browse files Browse the repository at this point in the history
  • Loading branch information
daladim committed Aug 17, 2021
1 parent c33bf5a commit dd3a938
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/read/coff/section.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit dd3a938

Please sign in to comment.