From a721adbc14657389565f5de3a65e7525cb24d3be Mon Sep 17 00:00:00 2001 From: kkent030315 Date: Tue, 29 Oct 2024 18:16:16 +0900 Subject: [PATCH] Fix typo in doc comment --- src/pe/tls.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pe/tls.rs b/src/pe/tls.rs index 58dffd74..a7865423 100644 --- a/src/pe/tls.rs +++ b/src/pe/tls.rs @@ -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`.