Skip to content

Commit

Permalink
Fix typo in doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kkent030315 committed Oct 29, 2024
1 parent 156d5c5 commit a721adb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pe/tls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub const TLS_CHARACTERISTICS_ALIGN_2048BYTES: u32 = 0x00D00000;
pub const TLS_CHARACTERISTICS_ALIGN_4096BYTES: u32 = 0x00C00000;
/// Indicates 8192-byte alignment for Thread Local Storage (TLS) characteristics field in [`ImageTlsDirectory::characteristics`]
pub const TLS_CHARACTERISTICS_ALIGN_8192BYTES: u32 = 0x00E00000;
/// Mask for isolating alignment information from the characteristics field field in [`ImageTlsDirectory::characteristics`]
/// Mask for isolating alignment information from the characteristics field in [`ImageTlsDirectory::characteristics`]
pub const TLS_CHARACTERISTICS_ALIGN_MASK: u32 = 0x00F00000;

/// Represents the TLS directory `IMAGE_TLS_DIRECTORY64`.
Expand Down

0 comments on commit a721adb

Please sign in to comment.