Skip to content

Commit 67ddae4

Browse files
committed
Fix XML comment
1 parent c1e6b72 commit 67ddae4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LibObjectFile/Elf/ElfObjectFileExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static class ElfObjectFileExtensions
1818
/// Copy to an array buffer the ident array as found in ELF header <see cref="Elf32_Ehdr.e_ident"/>
1919
/// or <see cref="Elf64_Ehdr.e_ident"/>.
2020
/// </summary>
21-
/// <param name="filectFile">The object file to copy the ident from.</param>
21+
/// <param name="file">The object file to copy the ident from.</param>
2222
/// <param name="ident">A span receiving the ident. Must be >= 16 bytes length</param>
2323
public static void CopyIdentTo(this ElfFile file, Span<byte> ident)
2424
{
@@ -49,7 +49,7 @@ public static void CopyIdentTo(this ElfFile file, Span<byte> ident)
4949
/// Tries to copy from an ident array as found in ELF header <see cref="Elf32_Ehdr.e_ident"/> to this ELF object file instance.
5050
/// or <see cref="Elf64_Ehdr.e_ident"/>.
5151
/// </summary>
52-
/// <param name="filectFile">The object file to receive the ident from.</param>
52+
/// <param name="file">The object file to receive the ident from.</param>
5353
/// <param name="ident">A span to read from. Must be >= 16 bytes length</param>
5454
/// <param name="diagnostics">The diagnostics</param>
5555
/// <returns><c>true</c> if copying the ident was successful. <c>false</c> otherwise</returns>

0 commit comments

Comments
 (0)