diff --git a/src/ImageSharp.Formats.Jpeg/IJpegEncoderOptions.cs b/src/ImageSharp.Formats.Jpeg/IJpegEncoderOptions.cs
index 7d62dd4ef..a54517965 100644
--- a/src/ImageSharp.Formats.Jpeg/IJpegEncoderOptions.cs
+++ b/src/ImageSharp.Formats.Jpeg/IJpegEncoderOptions.cs
@@ -14,9 +14,6 @@ namespace ImageSharp.Formats
/// Gets the quality, that will be used to encode the image. Quality
/// index must be between 0 and 100 (compression from max to min).
///
- ///
- /// If the quality is less than or equal to 80, the subsampling ratio will switch to
- ///
/// The quality of the jpg image from 0 to 100.
int Quality { get; }
diff --git a/src/ImageSharp.Formats.Jpeg/JpegEncoderOptions.cs b/src/ImageSharp.Formats.Jpeg/JpegEncoderOptions.cs
index 454afa6ae..73e483164 100644
--- a/src/ImageSharp.Formats.Jpeg/JpegEncoderOptions.cs
+++ b/src/ImageSharp.Formats.Jpeg/JpegEncoderOptions.cs
@@ -31,7 +31,7 @@ namespace ImageSharp.Formats
/// index must be between 0 and 100 (compression from max to min).
///
///
- /// If the quality is less than or equal to 80, the subsampling ratio will switch to
+ /// If the quality is less than or equal to 90, the subsampling ratio will switch to
///
/// The quality of the jpg image from 0 to 100.
public int Quality { get; set; }