Skip to content

Commit

Permalink
Fix comments in ZipFileExtensions.ZipArchiveEntry.Extract.cs (dotnet#…
Browse files Browse the repository at this point in the history
…100791)

There seems to be a minor encoding problem with the apostrophe character.
  • Loading branch information
ForNeVeR authored and Ruihan-Yin committed May 30, 2024
1 parent cd0942e commit 7234c4e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ namespace System.IO.Compression
public static partial class ZipFileExtensions
{
/// <summary>
/// Creates a file on the file system with the entry?s contents and the specified name. The last write time of the file is set to the
/// entry?s last write time. This method does not allow overwriting of an existing file with the same name. Attempting to extract explicit
/// Creates a file on the file system with the entry's contents and the specified name. The last write time of the file is set to the
/// entry's last write time. This method does not allow overwriting of an existing file with the same name. Attempting to extract explicit
/// directories (entries with names that end in directory separator characters) will not result in the creation of a directory.
/// </summary>
///
Expand All @@ -34,8 +34,8 @@ public static void ExtractToFile(this ZipArchiveEntry source, string destination
ExtractToFile(source, destinationFileName, false);

/// <summary>
/// Creates a file on the file system with the entry?s contents and the specified name.
/// The last write time of the file is set to the entry?s last write time.
/// Creates a file on the file system with the entry's contents and the specified name.
/// The last write time of the file is set to the entry's last write time.
/// This method does allows overwriting of an existing file with the same name.
/// </summary>
///
Expand Down

0 comments on commit 7234c4e

Please sign in to comment.