diff --git a/src/libraries/System.IO.Compression.ZipFile/src/System/IO/Compression/ZipFileExtensions.ZipArchiveEntry.Extract.cs b/src/libraries/System.IO.Compression.ZipFile/src/System/IO/Compression/ZipFileExtensions.ZipArchiveEntry.Extract.cs
index 3d713a514e4ab9..d77de24adbb03d 100644
--- a/src/libraries/System.IO.Compression.ZipFile/src/System/IO/Compression/ZipFileExtensions.ZipArchiveEntry.Extract.cs
+++ b/src/libraries/System.IO.Compression.ZipFile/src/System/IO/Compression/ZipFileExtensions.ZipArchiveEntry.Extract.cs
@@ -6,8 +6,8 @@ namespace System.IO.Compression
public static partial class ZipFileExtensions
{
///
- /// 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.
///
///
@@ -34,8 +34,8 @@ public static void ExtractToFile(this ZipArchiveEntry source, string destination
ExtractToFile(source, destinationFileName, false);
///
- /// 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.
///
///