diff --git a/src/ImageSharp/Formats/Jpeg/Components/Block8x8F.cs b/src/ImageSharp/Formats/Jpeg/Components/Block8x8F.cs
index c0de450695..c85bd725c9 100644
--- a/src/ImageSharp/Formats/Jpeg/Components/Block8x8F.cs
+++ b/src/ImageSharp/Formats/Jpeg/Components/Block8x8F.cs
@@ -147,7 +147,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
}
///
- /// Fill the block with defaults (zeroes)
+ /// Fill the block with defaults (zeroes).
///
[MethodImpl(InliningOptions.ShortMethod)]
public void Clear()
@@ -157,7 +157,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
}
///
- /// Load raw 32bit floating point data from source
+ /// Load raw 32bit floating point data from source.
///
/// Source
[MethodImpl(InliningOptions.ShortMethod)]
@@ -170,7 +170,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
}
///
- /// Load raw 32bit floating point data from source
+ /// Load raw 32bit floating point data from source.
///
/// Block pointer
/// Source
@@ -197,7 +197,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
}
///
- /// Copy raw 32bit floating point data to dest
+ /// Copy raw 32bit floating point data to dest,
///
/// Destination
[MethodImpl(InliningOptions.ShortMethod)]
@@ -210,7 +210,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
}
///
- /// Convert salars to byte-s and copy to dest
+ /// Convert salars to byte-s and copy to dest,
///
/// Pointer to block
/// Destination
@@ -226,10 +226,10 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
}
///
- /// Copy raw 32bit floating point data to dest
+ /// Copy raw 32bit floating point data to dest.
///
- /// Block pointer
- /// Destination
+ /// The block pointer.
+ /// The destination.
[MethodImpl(InliningOptions.ShortMethod)]
public static unsafe void CopyTo(Block8x8F* blockPtr, Span dest)
{
@@ -275,7 +275,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
///
/// Multiply all elements of the block.
///
- /// The value to multiply by
+ /// The value to multiply by.
[MethodImpl(InliningOptions.ShortMethod)]
public void MultiplyInplace(float value)
{
@@ -298,7 +298,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
}
///
- /// Multiply all elements of the block by the corresponding elements of 'other'
+ /// Multiply all elements of the block by the corresponding elements of 'other'.
///
[MethodImpl(InliningOptions.ShortMethod)]
public void MultiplyInplace(ref Block8x8F other)
@@ -349,8 +349,8 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
///
/// Quantize the block.
///
- /// Block pointer
- /// Qt pointer
+ /// The block pointer.
+ /// The qt pointer.
/// Unzig pointer
// [MethodImpl(MethodImplOptions.AggressiveInlining)]
public static unsafe void DequantizeBlock(Block8x8F* blockPtr, Block8x8F* qtPtr, byte* unzigPtr)