diff --git a/src/ImageSharp/Formats/Jpeg/Components/Encoder/YCbCrEncoder{TPixel}.cs b/src/ImageSharp/Formats/Jpeg/Components/Encoder/YCbCrEncoder{TPixel}.cs
index db2a3c354f..8256348a8a 100644
--- a/src/ImageSharp/Formats/Jpeg/Components/Encoder/YCbCrEncoder{TPixel}.cs
+++ b/src/ImageSharp/Formats/Jpeg/Components/Encoder/YCbCrEncoder{TPixel}.cs
@@ -17,7 +17,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Encoder
///
///
/// This is subject to change, 1024 seems to be the best value in terms of performance.
- /// expects it to be at least 8 (see comments in method body).
+ /// expects it to be at least 8 (see comments in method body).
///
private const int EmitBufferSizeInBytes = 1024;
@@ -32,7 +32,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Encoder
private int emitLen = 0;
///
- /// Emmited bits 'micro buffer' before being transfered to the .
+ /// Emmited bits 'micro buffer' before being transfered to the .
///
private uint accumulatedBits;
@@ -82,6 +82,8 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Encoder
///
/// The pixel format.
/// The pixel accessor providing access to the image pixels.
+ /// Luminance quantization table provided by the callee
+ /// Chrominance quantization table provided by the callee
/// The token to monitor for cancellation.
private void Encode444(Image pixels, ref Block8x8F luminanceQuantTable, ref Block8x8F chrominanceQuantTable, CancellationToken cancellationToken)
where TPixel : unmanaged, IPixel
@@ -135,6 +137,8 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Encoder
///
/// The pixel format.
/// The pixel accessor providing access to the image pixels.
+ /// Luminance quantization table provided by the callee
+ /// Chrominance quantization table provided by the callee
/// The token to monitor for cancellation.
private void Encode420(Image pixels, ref Block8x8F luminanceQuantTable, ref Block8x8F chrominanceQuantTable, CancellationToken cancellationToken)
where TPixel : unmanaged, IPixel
@@ -203,6 +207,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Encoder
///
/// The pixel format.
/// The pixel accessor providing access to the image pixels.
+ /// Luminance quantization table provided by the callee
/// The token to monitor for cancellation.
private void EncodeGrayscale(Image pixels, ref Block8x8F luminanceQuantTable, CancellationToken cancellationToken)
where TPixel : unmanaged, IPixel