Skip to content

Commit

Permalink
Update doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kkent030315 committed Oct 28, 2024
1 parent 10fc043 commit b4c2672
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pe/debug.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ pub struct DebugData<'a> {
/// Reproducible build (Repro) information, if available.
///
/// - **MSVC builds**: Contains a 32-byte hash stored directly in the raw data.
/// - **Clang builds**: Uses the `ImageDebugDirectory::time_date_stamp` as a hash,
/// - **Clang builds**: Uses the [`ImageDebugDirectory::time_date_stamp`] as a hash,
/// with no dedicated raw data.
///
/// [`IMAGE_DEBUG_TYPE_REPRO`]
Expand Down Expand Up @@ -519,10 +519,10 @@ impl<'a> CodeviewPDB20DebugInfo<'a> {
/// field functions as a hash, providing a unique identifier for the reproducible build.
#[derive(Debug, PartialEq, Copy, Clone)]
pub enum ReproInfo<'a> {
/// Represents a hash stored in the `time_date_stamp` field.
/// Represents a hash stored in the [`ImageDebugDirectory::time_date_stamp`] field.
///
/// This variant is used primarily for executables built with Clang/LLD, where the
/// `time_date_stamp` acts as the Repro hash.
/// [`ImageDebugDirectory::time_date_stamp`] acts as the Repro hash.
TimeDateStamp(u32),
/// Represents a buffer containing the 32-byte Repro hash.
///
Expand Down

0 comments on commit b4c2672

Please sign in to comment.